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
use fj_math::{Point, Scalar, Vector};

use crate::{partial::PartialCurve, path::SurfacePath};

/// Builder API for [`PartialCurve`]
pub trait CurveBuilder {
    /// Update partial curve to represent the u-axis
    fn update_as_u_axis(self) -> Self;

    /// Update partial curve to represent the v-axis
    fn update_as_v_axis(self) -> Self;

    /// Update partial curve as a circle, from the provided radius
    fn update_as_circle_from_radius(self, radius: impl Into<Scalar>) -> Self;

    /// Update partial curve as a line, from the provided points
    fn update_as_line_from_points(
        self,
        points: [impl Into<Point<2>>; 2],
    ) -> Self;
}

impl CurveBuilder for PartialCurve {
    fn update_as_u_axis(self) -> Self {
        let a = Point::origin();
        let b = a + Vector::unit_u();

        self.update_as_line_from_points([a, b])
    }

    fn update_as_v_axis(self) -> 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(self, radius: impl Into<Scalar>) -> Self {
        self.with_path(Some(SurfacePath::circle_from_radius(radius)))
    }

    fn update_as_line_from_points(
        self,
        points: [impl Into<Point<2>>; 2],
    ) -> Self {
        self.with_path(Some(SurfacePath::line_from_points(points)))
    }
}