Returns a reference to the vertex indices of this cell
(&self)
| 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] { |
no outgoing calls
no test coverage detected