Remove redundant code

This commit is contained in:
Hanno Braun 2025-02-24 19:11:16 +01:00
parent 84c30f0bbb
commit 193c428189

View File

@ -56,9 +56,6 @@ impl Object for Face {
}
fn tri_mesh(&self) -> TriMesh {
let mut vertices = Vec::new();
vertices.extend(self.half_edges().cloned());
triangulate(&self.half_edges, self.surface())
}