pub struct PolylineFit {
pub curve: NurbsCurve,
pub parameters: Vec<f64>,
pub kept: Vec<Vec3>,
}Fields§
§curve: NurbsCurve§parameters: Vec<f64>§kept: Vec<Vec3>Trait Implementations§
Source§impl Clone for PolylineFit
impl Clone for PolylineFit
Source§fn clone(&self) -> PolylineFit
fn clone(&self) -> PolylineFit
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 moreAuto Trait Implementations§
impl !Freeze for PolylineFit
impl !RefUnwindSafe for PolylineFit
impl !Sync for PolylineFit
impl Send for PolylineFit
impl Unpin for PolylineFit
impl UnsafeUnpin for PolylineFit
impl UnwindSafe for PolylineFit
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