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
pub mod curve;
pub mod cycle;
pub mod edge;
pub mod vertex;

use crate::{
    objects::{
        Curve, Cycle, GlobalEdge, GlobalVertex, HalfEdge, SurfaceVertex, Vertex,
    },
    stores::{Handle, Stores},
};

use super::{
    HasPartial, MaybePartial, Partial, PartialCurve, PartialCycle,
    PartialGlobalEdge, PartialGlobalVertex, PartialHalfEdge,
    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, stores: &Stores) -> Self::Full {
                    self.build(stores)
                }
            }

            impl From<$partial> for MaybePartial<$full> {
                fn from(partial: $partial) -> Self {
                    Self::Partial(partial)
                }
            }
        )*
    };
}

impl_traits!(
    Handle<Curve>, PartialCurve;
    Cycle, PartialCycle;
    GlobalEdge, PartialGlobalEdge;
    Handle<GlobalVertex>, PartialGlobalVertex;
    HalfEdge, PartialHalfEdge;
    SurfaceVertex, PartialSurfaceVertex;
    Vertex, PartialVertex;
);