diff --git a/experiments/2025-03-18/src/operations/translate.rs b/experiments/2025-03-18/src/operations/translate.rs index c3bfe1e06..57af02079 100644 --- a/experiments/2025-03-18/src/operations/translate.rs +++ b/experiments/2025-03-18/src/operations/translate.rs @@ -14,14 +14,6 @@ pub trait TranslateExt { impl TranslateExt for Curve { fn translate(&self, offset: impl Into>) -> Self { - // Right now, `Curve` is a placeholder, and there's no need to do - // anything here. It's possible, that it will end up being defined - // locally on a surface, and then this will remain too. - // - // The other scenario is that curves end up being defined globally, in - // 3D space, which means we have to do the actual translation here. - // We'll see how it shakes out. - let Curve { geometry } = self; Curve {