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