pub struct SubdivMesh {
pub vertices: Vec<[f64; 3]>,
pub faces: Vec<[usize; 3]>,
}Expand description
A triangle mesh used as input/output for subdivision.
Fields§
§vertices: Vec<[f64; 3]>Vertex positions.
faces: Vec<[usize; 3]>Triangle faces (indices into vertices).
Implementations§
Source§impl SubdivMesh
impl SubdivMesh
Sourcepub fn new(vertices: Vec<[f64; 3]>, faces: Vec<[usize; 3]>) -> Self
pub fn new(vertices: Vec<[f64; 3]>, faces: Vec<[usize; 3]>) -> Self
Construct a new subdivision mesh.
Sourcepub fn n_vertices(&self) -> usize
pub fn n_vertices(&self) -> usize
Number of vertices.
Sourcepub fn vertex_neighbours(&self) -> Vec<Vec<usize>>
pub fn vertex_neighbours(&self) -> Vec<Vec<usize>>
Compute the one-ring neighbourhood (edge-adjacent vertex indices) for every vertex.
Sourcepub fn boundary_vertices(&self) -> Vec<bool>
pub fn boundary_vertices(&self) -> Vec<bool>
Identify boundary vertices: those on edges shared by exactly one face.
Trait Implementations§
Source§impl Clone for SubdivMesh
impl Clone for SubdivMesh
Source§fn clone(&self) -> SubdivMesh
fn clone(&self) -> SubdivMesh
Returns a duplicate of the value. Read more
1.0.0 · 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 SubdivMesh
impl RefUnwindSafe for SubdivMesh
impl Send for SubdivMesh
impl Sync for SubdivMesh
impl Unpin for SubdivMesh
impl UnsafeUnpin for SubdivMesh
impl UnwindSafe for SubdivMesh
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.