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
use fj_math::{Point, Scalar, Vector};
use crate::{geometry::path::SurfacePath, partial::PartialCurve};
pub trait CurveBuilder {
fn update_as_u_axis(&mut self) -> &mut Self;
fn update_as_v_axis(&mut self) -> &mut Self;
fn update_as_circle_from_radius(
&mut self,
radius: impl Into<Scalar>,
) -> &mut Self;
fn update_as_line_from_points(
&mut self,
points: [impl Into<Point<2>>; 2],
) -> &mut Self;
}
impl CurveBuilder for PartialCurve {
fn update_as_u_axis(&mut self) -> &mut Self {
let a = Point::origin();
let b = a + Vector::unit_u();
self.update_as_line_from_points([a, b])
}
fn update_as_v_axis(&mut self) -> &mut Self {
let a = Point::origin();
let b = a + Vector::unit_v();
self.update_as_line_from_points([a, b])
}
fn update_as_circle_from_radius(
&mut self,
radius: impl Into<Scalar>,
) -> &mut Self {
self.path = Some(SurfacePath::circle_from_radius(radius));
self
}
fn update_as_line_from_points(
&mut self,
points: [impl Into<Point<2>>; 2],
) -> &mut Self {
self.path = Some(SurfacePath::line_from_points(points));
self
}
}