Struct ruststep::ap203::config_control_design::BSplineSurface [−][src]
pub struct BSplineSurface {
pub bounded_surface: BoundedSurface,
pub u_degree: i64,
pub v_degree: i64,
pub control_points_list: Vec<Vec<CartesianPoint>>,
pub surface_form: BSplineSurfaceForm,
pub u_closed: Logical,
pub v_closed: Logical,
pub self_intersect: Logical,
}
Fields
bounded_surface: BoundedSurface
u_degree: i64
v_degree: i64
control_points_list: Vec<Vec<CartesianPoint>>
surface_form: BSplineSurfaceForm
u_closed: Logical
v_closed: Logical
self_intersect: Logical
Implementations
pub fn new(
bounded_surface: BoundedSurface,
u_degree: i64,
v_degree: i64,
control_points_list: Vec<Vec<CartesianPoint>>,
surface_form: BSplineSurfaceForm,
u_closed: Logical,
v_closed: Logical,
self_intersect: Logical
) -> Self
pub fn new(
bounded_surface: BoundedSurface,
u_degree: i64,
v_degree: i64,
control_points_list: Vec<Vec<CartesianPoint>>,
surface_form: BSplineSurfaceForm,
u_closed: Logical,
v_closed: Logical,
self_intersect: Logical
) -> Self
Constructs a new BSplineSurface
.
Methods from Deref<Target = BoundedSurface>
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
type Target = BoundedSurface
type Target = BoundedSurface
The resulting type after dereferencing.
Performs the conversion.
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for BSplineSurface
impl Send for BSplineSurface
impl Sync for BSplineSurface
impl Unpin for BSplineSurface
impl UnwindSafe for BSplineSurface
Blanket Implementations
Mutably borrows from an owned value. Read more