Remove Vector::UNIT constant

This commit is contained in:
Héctor Ramón Jiménez 2024-07-13 13:41:00 +02:00
parent 5e6d994199
commit d9a29f5176
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -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>