pub struct BSplineSurfaceWithKnots {Show 13 fields
pub name: String,
pub u_degree: i64,
pub v_degree: i64,
pub control_points_list: Vec<Vec<CartesianPointRef>>,
pub surface_form: BSplineSurfaceForm,
pub u_closed: Logical,
pub v_closed: Logical,
pub self_intersect: Logical,
pub u_multiplicities: Vec<i64>,
pub v_multiplicities: Vec<i64>,
pub u_knots: Vec<f64>,
pub v_knots: Vec<f64>,
pub knot_spec: KnotType,
}Fields§
§name: String§u_degree: i64§v_degree: i64§control_points_list: Vec<Vec<CartesianPointRef>>§surface_form: BSplineSurfaceForm§u_closed: Logical§v_closed: Logical§self_intersect: Logical§u_multiplicities: Vec<i64>§v_multiplicities: Vec<i64>§u_knots: Vec<f64>§v_knots: Vec<f64>§knot_spec: KnotTypeTrait Implementations§
Source§impl Clone for BSplineSurfaceWithKnots
impl Clone for BSplineSurfaceWithKnots
Source§fn clone(&self) -> BSplineSurfaceWithKnots
fn clone(&self) -> BSplineSurfaceWithKnots
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BSplineSurfaceWithKnots
impl Debug for BSplineSurfaceWithKnots
Source§impl PartialEq for BSplineSurfaceWithKnots
impl PartialEq for BSplineSurfaceWithKnots
Source§fn eq(&self, other: &BSplineSurfaceWithKnots) -> bool
fn eq(&self, other: &BSplineSurfaceWithKnots) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BSplineSurfaceWithKnots
Auto Trait Implementations§
impl Freeze for BSplineSurfaceWithKnots
impl RefUnwindSafe for BSplineSurfaceWithKnots
impl Send for BSplineSurfaceWithKnots
impl Sync for BSplineSurfaceWithKnots
impl Unpin for BSplineSurfaceWithKnots
impl UnsafeUnpin for BSplineSurfaceWithKnots
impl UnwindSafe for BSplineSurfaceWithKnots
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more