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; }
Expand description

Builder API for PartialCurve

Required Methods§

Update partial curve to represent the u-axis

Update partial curve to represent the v-axis

Update partial curve as a circle, from the provided radius

Update partial curve as a line, from the provided points

Implementors§