diff options
-rw-r--r-- | core/src/vector.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/src/vector.rs b/core/src/vector.rs index 049e648f..1380c3b3 100644 --- a/core/src/vector.rs +++ b/core/src/vector.rs @@ -18,9 +18,6 @@ impl<T> Vector<T> { impl Vector { /// The zero [`Vector`]. pub const ZERO: Self = Self::new(0.0, 0.0); - - /// The unit [`Vector`]. - pub const UNIT: Self = Self::new(0.0, 0.0); } impl<T> std::ops::Add for Vector<T> |