From f7a8b6983c2af491803bf84f341d8069045ffb5e Mon Sep 17 00:00:00 2001
From: Héctor Ramón Jiménez <hector0193@gmail.com>
Date: Tue, 7 Jan 2020 04:56:32 +0100
Subject: Remove `Mul` implementation for `Vector`

---
 core/src/vector.rs | 11 -----------
 1 file changed, 11 deletions(-)

(limited to 'core/src')

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<T> std::ops::Mul for Vector<T>
-where
-    T: std::ops::Mul<Output = T>,
-{
-    type Output = Self;
-
-    fn mul(self, b: Self) -> Self {
-        Self::new(self.x * b.x, self.y * b.y)
-    }
-}
-
 impl<T> Default for Vector<T>
 where
     T: Default,
-- 
cgit