Trait fj_kernel::builder::CurveBuilder
source · 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§
sourcefn update_as_u_axis(&mut self) -> &mut Self
fn update_as_u_axis(&mut self) -> &mut Self
Update partial curve to represent the u-axis
sourcefn update_as_v_axis(&mut self) -> &mut Self
fn update_as_v_axis(&mut self) -> &mut Self
Update partial curve to represent the v-axis
sourcefn update_as_circle_from_radius(
&mut self,
radius: impl Into<Scalar>
) -> &mut Self
fn update_as_circle_from_radius(
&mut self,
radius: impl Into<Scalar>
) -> &mut Self
Update partial curve as a circle, from the provided radius