pub struct ImageCurve {
pub curve: NurbsCurve,
pub t0: f64,
pub t1: f64,
pub tier: ImageCurveTier,
pub deviation: f64,
}Expand description
The 3D image of a pcurve on a surface, plus the parameter range that matches the pcurve’s own domain fraction for fraction.
Fields§
§curve: NurbsCurve§t0: f64Curve parameter at the pcurve’s domain START. May exceed t1.
t1: f64Curve parameter at the pcurve’s domain END.
tier: ImageCurveTier§deviation: f64Measured max ‖curve(t) − surface(pcurve(q))‖ over the off-node sweep.
Trait Implementations§
Source§impl Clone for ImageCurve
impl Clone for ImageCurve
Source§fn clone(&self) -> ImageCurve
fn clone(&self) -> ImageCurve
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 ImageCurve
impl !RefUnwindSafe for ImageCurve
impl !Sync for ImageCurve
impl Send for ImageCurve
impl Unpin for ImageCurve
impl UnsafeUnpin for ImageCurve
impl UnwindSafe for ImageCurve
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