pub struct SurfaceIntersectionCurve {
pub points: Vec<Vec3>,
pub params_a: Vec<[f64; 2]>,
pub params_b: Vec<[f64; 2]>,
pub closed: bool,
}Fields§
§points: Vec<Vec3>§params_a: Vec<[f64; 2]>§params_b: Vec<[f64; 2]>§closed: boolTrait Implementations§
Source§impl Clone for SurfaceIntersectionCurve
impl Clone for SurfaceIntersectionCurve
Source§fn clone(&self) -> SurfaceIntersectionCurve
fn clone(&self) -> SurfaceIntersectionCurve
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 SurfaceIntersectionCurve
impl Debug for SurfaceIntersectionCurve
Auto Trait Implementations§
impl Freeze for SurfaceIntersectionCurve
impl RefUnwindSafe for SurfaceIntersectionCurve
impl Send for SurfaceIntersectionCurve
impl Sync for SurfaceIntersectionCurve
impl Unpin for SurfaceIntersectionCurve
impl UnsafeUnpin for SurfaceIntersectionCurve
impl UnwindSafe for SurfaceIntersectionCurve
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