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
79
80
81
82
83
use fj_math::Point;
use crate::{
geometry::surface::SurfaceGeometry,
objects::{Curve, GlobalVertex},
partial::{
HasPartial, MaybePartial, PartialGlobalVertex, PartialSurfaceVertex,
PartialVertex,
},
};
pub trait VertexBuilder {
fn infer_surface_form(&mut self) -> &mut Self;
}
impl VertexBuilder for PartialVertex {
fn infer_surface_form(&mut self) -> &mut Self {
self.surface_form = PartialSurfaceVertex::default().into();
self
}
}
pub trait SurfaceVertexBuilder {
fn infer_global_form(&mut self) -> &mut Self;
}
impl SurfaceVertexBuilder for PartialSurfaceVertex {
fn infer_global_form(&mut self) -> &mut Self {
self.global_form = GlobalVertex::partial().into();
self
}
}
pub trait GlobalVertexBuilder {
fn from_curve_and_position(
curve: impl Into<MaybePartial<Curve>>,
position: impl Into<Point<1>>,
) -> Self;
fn from_surface_and_position(
surface: &SurfaceGeometry,
position: impl Into<Point<2>>,
) -> Self;
}
impl GlobalVertexBuilder for PartialGlobalVertex {
fn from_curve_and_position(
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",
)
.geometry();
let position_surface = path.point_from_path_coords(position);
Self::from_surface_and_position(&surface, position_surface)
}
fn from_surface_and_position(
surface: &SurfaceGeometry,
position: impl Into<Point<2>>,
) -> Self {
PartialGlobalVertex {
position: Some(surface.point_from_surface_coords(position)),
}
}
}