1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
pub mod curve;
pub mod cycle;
pub mod edge;
pub mod face;
pub mod surface;
pub mod vertex;
use crate::{
objects::{
Curve, Cycle, Face, GlobalCurve, GlobalEdge, GlobalVertex, HalfEdge,
Objects, Surface, SurfaceVertex, Vertex,
},
services::Service,
};
use super::{
HasPartial, MaybePartial, Partial, PartialCurve, PartialCycle, PartialFace,
PartialGlobalCurve, PartialGlobalEdge, PartialGlobalVertex,
PartialHalfEdge, PartialSurface, PartialSurfaceVertex, PartialVertex,
};
macro_rules! impl_traits {
($($full:ty, $partial:ty;)*) => {
$(
impl HasPartial for $full {
type Partial = $partial;
}
impl Partial for $partial {
type Full = $full;
fn build(self, objects: &mut Service<Objects>) -> Self::Full {
self.build(objects)
}
}
impl From<$partial> for MaybePartial<$full> {
fn from(partial: $partial) -> Self {
Self::Partial(partial)
}
}
)*
};
}
impl_traits!(
Curve, PartialCurve;
Cycle, PartialCycle;
Face, PartialFace;
GlobalCurve, PartialGlobalCurve;
GlobalEdge, PartialGlobalEdge;
GlobalVertex, PartialGlobalVertex;
HalfEdge, PartialHalfEdge;
Surface, PartialSurface;
SurfaceVertex, PartialSurfaceVertex;
Vertex, PartialVertex;
);