Remove unused methods

This commit is contained in:
Hanno Braun 2025-03-21 21:16:14 +01:00
parent fa20b46ab8
commit a5d16b4e02

View File

@ -62,16 +62,6 @@ impl TriMesh {
false
}
/// Access the vertices of the mesh
pub fn vertices(&self) -> impl Iterator<Item = Point<3>> + '_ {
self.vertices.iter().copied()
}
/// Access the indices of the mesh
pub fn indices(&self) -> impl Iterator<Item = Index> + '_ {
self.indices.iter().copied()
}
/// Access the triangles of the mesh
pub fn triangles(&self) -> impl Iterator<Item = MeshTriangle> + '_ {
self.triangles.iter().copied()