From d9a29f51760efc0b2a9d3b0947c15c51897a7a5e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 13 Jul 2024 13:41:00 +0200 Subject: Remove `Vector::UNIT` constant --- core/src/vector.rs | 3 --- 1 file changed, 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 Vector { 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 std::ops::Add for Vector -- cgit