Prepare for follow-on change

This commit is contained in:
Hanno Braun 2025-02-12 20:27:56 +01:00
parent ca5b07d68e
commit d947722c2b

View File

@ -40,10 +40,7 @@ impl Face {
}
pub fn flip(&self) -> Self {
Self {
surface: self.surface.flip(),
vertices: self.vertices.clone(),
}
Self::new(self.surface.flip(), self.vertices.clone())
}
pub fn translate(&self, offset: impl Into<Vector<3>>) -> Self {