pub struct BSplineCurveWithKnots {
pub name: String,
pub degree: i64,
pub control_points_list: Vec<CartesianPointRef>,
pub curve_form: BSplineCurveForm,
pub closed_curve: Logical,
pub self_intersect: Logical,
pub knot_multiplicities: Vec<i64>,
pub knots: Vec<f64>,
pub knot_spec: KnotType,
}Fields§
§name: String§degree: i64§control_points_list: Vec<CartesianPointRef>§curve_form: BSplineCurveForm§closed_curve: Logical§self_intersect: Logical§knot_multiplicities: Vec<i64>§knots: Vec<f64>§knot_spec: KnotTypeTrait Implementations§
Source§impl Clone for BSplineCurveWithKnots
impl Clone for BSplineCurveWithKnots
Source§fn clone(&self) -> BSplineCurveWithKnots
fn clone(&self) -> BSplineCurveWithKnots
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 BSplineCurveWithKnots
impl Debug for BSplineCurveWithKnots
Source§impl PartialEq for BSplineCurveWithKnots
impl PartialEq for BSplineCurveWithKnots
Source§fn eq(&self, other: &BSplineCurveWithKnots) -> bool
fn eq(&self, other: &BSplineCurveWithKnots) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BSplineCurveWithKnots
Auto Trait Implementations§
impl Freeze for BSplineCurveWithKnots
impl RefUnwindSafe for BSplineCurveWithKnots
impl Send for BSplineCurveWithKnots
impl Sync for BSplineCurveWithKnots
impl Unpin for BSplineCurveWithKnots
impl UnsafeUnpin for BSplineCurveWithKnots
impl UnwindSafe for BSplineCurveWithKnots
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