diff --git a/crates/fj-core/src/geometry/curve.rs b/crates/fj-core/src/geometry/curve.rs index 22d6fe1b8..7bbef9dc1 100644 --- a/crates/fj-core/src/geometry/curve.rs +++ b/crates/fj-core/src/geometry/curve.rs @@ -34,7 +34,7 @@ impl CurveGeom { surface: Handle, ) -> Self { let mut definitions = BTreeMap::new(); - definitions.insert(surface.clone(), LocalCurveGeom { path, surface }); + definitions.insert(surface.clone(), LocalCurveGeom { path }); Self { definitions } } @@ -45,7 +45,4 @@ impl CurveGeom { pub struct LocalCurveGeom { /// The path that defines the curve on its surface pub path: SurfacePath, - - /// The surface that the curve is defined on - pub surface: Handle, }