diff --git a/crates/fj-math/src/point.rs b/crates/fj-math/src/point.rs index 83b06f63a..90c090f95 100644 --- a/crates/fj-math/src/point.rs +++ b/crates/fj-math/src/point.rs @@ -200,14 +200,6 @@ impl ops::Sub> for &Point { } } -impl ops::Mul for Point { - type Output = Self; - - fn mul(self, rhs: f64) -> Self::Output { - self.to_na().mul(rhs).into() - } -} - impl fmt::Debug for Point { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { self.coords.fmt(f)