pub struct ComplexTriangulatedSurfaceSet {
pub name: String,
pub coordinates: CoordinatesListRef,
pub pnmax: i64,
pub normals: Vec<Vec<f64>>,
pub pnindex: Vec<i64>,
pub triangle_strips: Vec<Vec<i64>>,
pub triangle_fans: Vec<Vec<i64>>,
}Fields§
§name: String§coordinates: CoordinatesListRef§pnmax: i64§normals: Vec<Vec<f64>>§pnindex: Vec<i64>§triangle_strips: Vec<Vec<i64>>§triangle_fans: Vec<Vec<i64>>Trait Implementations§
Source§impl Clone for ComplexTriangulatedSurfaceSet
impl Clone for ComplexTriangulatedSurfaceSet
Source§fn clone(&self) -> ComplexTriangulatedSurfaceSet
fn clone(&self) -> ComplexTriangulatedSurfaceSet
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 PartialEq for ComplexTriangulatedSurfaceSet
impl PartialEq for ComplexTriangulatedSurfaceSet
Source§fn eq(&self, other: &ComplexTriangulatedSurfaceSet) -> bool
fn eq(&self, other: &ComplexTriangulatedSurfaceSet) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ComplexTriangulatedSurfaceSet
Auto Trait Implementations§
impl Freeze for ComplexTriangulatedSurfaceSet
impl RefUnwindSafe for ComplexTriangulatedSurfaceSet
impl Send for ComplexTriangulatedSurfaceSet
impl Sync for ComplexTriangulatedSurfaceSet
impl Unpin for ComplexTriangulatedSurfaceSet
impl UnsafeUnpin for ComplexTriangulatedSurfaceSet
impl UnwindSafe for ComplexTriangulatedSurfaceSet
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