Returns a mutable reference to the vertex indices of this cell
(&mut self)
| 220 | |
| 221 | /// Returns a mutable reference to the vertex indices of this cell |
| 222 | fn vertices_mut(&mut self) -> &mut [usize] { |
| 223 | match self { |
| 224 | TriangleOrQuadCell::Tri(v) => v, |
| 225 | TriangleOrQuadCell::Quad(v) => v, |
| 226 | } |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | /// A surface mesh in 3D containing cells representing either triangles or quadrilaterals |
no outgoing calls
no test coverage detected