Split expression into simpler ones

This commit is contained in:
Hanno Braun 2025-02-28 20:47:44 +01:00
parent eec01461f5
commit 9cd32b0f4a

View File

@ -16,8 +16,7 @@ impl FlipExt for Face {
impl FlipExt for Surface {
fn flip(&self) -> Self {
Self {
geometry: self.geometry.flip(),
}
let geometry = self.geometry.flip();
Self { geometry }
}
}