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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
use fj_math::Point;

use crate::{
    objects::{Curve, GlobalVertex, Surface},
    partial::{
        HasPartial, MaybePartial, PartialGlobalVertex, PartialSurfaceVertex,
        PartialVertex,
    },
};

/// Builder API for [`PartialVertex`]
pub trait VertexBuilder {
    /// Remove the surface form of the partial vertex, inferring it on build
    fn infer_surface_form(self) -> Self;
}

impl VertexBuilder for PartialVertex {
    fn infer_surface_form(self) -> Self {
        self.with_surface_form(PartialSurfaceVertex::default())
    }
}

/// Builder API for [`PartialSurfaceVertex`]
pub trait SurfaceVertexBuilder {
    /// Infer the global form of the partial vertex
    fn infer_global_form(self) -> Self;
}

impl SurfaceVertexBuilder for PartialSurfaceVertex {
    fn infer_global_form(self) -> Self {
        self.with_global_form(Some(GlobalVertex::partial()))
    }
}

/// Builder API for [`PartialGlobalVertex`]
pub trait GlobalVertexBuilder {
    /// Update partial global vertex from the given curve and position on it
    fn update_from_curve_and_position(
        self,
        curve: impl Into<MaybePartial<Curve>>,
        position: impl Into<Point<1>>,
    ) -> Self;

    /// Update partial global vertex from the given surface and position on it
    fn update_from_surface_and_position(
        self,
        surface: &Surface,
        position: impl Into<Point<2>>,
    ) -> Self;
}

impl GlobalVertexBuilder for PartialGlobalVertex {
    fn update_from_curve_and_position(
        self,
        curve: impl Into<MaybePartial<Curve>>,
        position: impl Into<Point<1>>,
    ) -> Self {
        let curve = curve.into().into_partial();

        let path = curve.path().expect(
            "Need path to create `GlobalVertex` from curve and position",
        );
        let surface = curve.surface().expect(
            "Need surface to create `GlobalVertex` from curve and position",
        );

        let position_surface = path.point_from_path_coords(position);
        self.update_from_surface_and_position(&surface, position_surface)
    }

    fn update_from_surface_and_position(
        self,
        surface: &Surface,
        position: impl Into<Point<2>>,
    ) -> Self {
        self.with_position(Some(surface.point_from_surface_coords(position)))
    }
}