pub struct IntersectionCurve {
pub xmt: u32,
pub references: [u32; 6],
pub supports: [u32; 2],
pub pos: usize,
pub points: Vec<Point3>,
pub parameters: Vec<f64>,
pub fit_tolerance: f64,
pub support_uv: SupportUv,
pub ext_support_uv: SupportUv,
}Expand description
A decoded surface-intersection construction and its solved chart cache.
Fields§
§xmt: u32Cross-reference index of the construction record.
references: [u32; 6]Six ordered construction references.
supports: [u32; 2]Resolved primary and secondary support-surface references.
pos: usizeType-tag offset of the construction record.
points: Vec<Point3>Chart points in millimetres.
parameters: Vec<f64>Native chart parameter at each point.
fit_tolerance: f64Chart chordal error in millimetres.
support_uv: SupportUvOrdered support UV values in native Parasolid parameter units.
ext_support_uv: SupportUvTwo ext11 UV lanes awaiting assignment to the ordered supports.
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