Remove redundant code

This commit is contained in:
Hanno Braun 2025-11-11 15:03:22 +01:00
parent 743a2a0e61
commit 6a170a9bf4

View File

@ -49,12 +49,6 @@ impl SurfaceGeometry for FlippedSurface {
boundary: &Aabb<2>,
tolerance: Tolerance,
) -> SurfaceApprox {
let mut approx = self.original.approximate(boundary, tolerance);
for point in &mut approx.points {
point.u = -point.u;
}
approx
self.original.approximate(boundary, tolerance)
}
}