pub struct IntersectionCurve {
pub curve: NurbsCurve,
pub points: Vec<IntersectionPoint>,
}Expand description
Result of a surface-surface intersection: a list of intersection curves.
Fields§
§curve: NurbsCurveThe 3D intersection curve as a NURBS.
points: Vec<IntersectionPoint>Sampled points along the curve with parameter values.
Trait Implementations§
Source§impl Clone for IntersectionCurve
impl Clone for IntersectionCurve
Source§fn clone(&self) -> IntersectionCurve
fn clone(&self) -> IntersectionCurve
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 IntersectionCurve
impl RefUnwindSafe for IntersectionCurve
impl Send for IntersectionCurve
impl Sync for IntersectionCurve
impl Unpin for IntersectionCurve
impl UnsafeUnpin for IntersectionCurve
impl UnwindSafe for IntersectionCurve
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