shape-core 0.1.17

Definition of geometry shapes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::*;

impl Debug for MeshTriangleIndex {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_tuple("MeshTriangleIndex").field(&self.a).field(&self.b).field(&self.c).finish()
    }
}

impl Display for MeshTriangleIndex {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_tuple("").field(&self.a).field(&self.b).field(&self.c).finish()
    }
}