diff --git a/core/src/vector.rs b/core/src/vector.rs index 75c77dbd..1c09ee3e 100644 --- a/core/src/vector.rs +++ b/core/src/vector.rs @@ -32,17 +32,6 @@ where } } -impl std::ops::Mul for Vector -where - T: std::ops::Mul, -{ - type Output = Self; - - fn mul(self, b: Self) -> Self { - Self::new(self.x * b.x, self.y * b.y) - } -} - impl Default for Vector where T: Default,