MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/splashsurf / vertices

Method vertices

splashsurf_lib/src/mesh.rs:214–219  ·  view source on GitHub ↗

Returns a reference to the vertex indices of this cell

(&self)

Source from the content-addressed store, hash-verified

212
213 /// Returns a reference to the vertex indices of this cell
214 fn vertices(&self) -> &[usize] {
215 match self {
216 TriangleOrQuadCell::Tri(v) => v,
217 TriangleOrQuadCell::Quad(v) => v,
218 }
219 }
220
221 /// Returns a mutable reference to the vertex indices of this cell
222 fn vertices_mut(&mut self) -> &mut [usize] {

Callers 9

par_clamp_with_aabbMethod · 0.45
vertex_keep_tableFunction · 0.45
keep_cells_implFunction · 0.45
mesh_to_objFunction · 0.45
mesh_to_plyFunction · 0.45
reconstruction_pipelineFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected