pub struct GeoMesh {
pub vertices: Vec<[f64; 3]>,
pub faces: Vec<[usize; 3]>,
}Expand description
A simple triangle mesh for geodesic computation.
Fields§
§vertices: Vec<[f64; 3]>Vertex positions.
faces: Vec<[usize; 3]>Triangle face indices (each entry is [v0, v1, v2]).
Implementations§
Source§impl GeoMesh
impl GeoMesh
Sourcepub fn new(vertices: Vec<[f64; 3]>, faces: Vec<[usize; 3]>) -> Self
pub fn new(vertices: Vec<[f64; 3]>, faces: Vec<[usize; 3]>) -> Self
Create a new geodesic mesh.
Sourcepub fn n_vertices(&self) -> usize
pub fn n_vertices(&self) -> usize
Number of vertices.
Sourcepub fn build_adjacency(&self) -> Vec<Vec<(usize, f64)>>
pub fn build_adjacency(&self) -> Vec<Vec<(usize, f64)>>
Build an adjacency list: for each vertex, list all neighbouring vertex indices along with the edge length.
Sourcepub fn face_normal_raw(&self, face_idx: usize) -> [f64; 3]
pub fn face_normal_raw(&self, face_idx: usize) -> [f64; 3]
Compute the normal of a triangular face (not normalised).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GeoMesh
impl RefUnwindSafe for GeoMesh
impl Send for GeoMesh
impl Sync for GeoMesh
impl Unpin for GeoMesh
impl UnsafeUnpin for GeoMesh
impl UnwindSafe for GeoMesh
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.