summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engine/src/data_types/vector.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/src/data_types/vector.rs b/engine/src/data_types/vector.rs
index 6746b76..8073cdf 100644
--- a/engine/src/data_types/vector.rs
+++ b/engine/src/data_types/vector.rs
@@ -85,9 +85,9 @@ pub struct Vec3<Value>
impl Vec3<f32>
{
- pub const BACK: Self = Self { x: 0.0, y: 1.0, z: -1.0 };
+ pub const BACK: Self = Self { x: 0.0, y: 0.0, z: -1.0 };
pub const DOWN: Self = Self { x: 0.0, y: -1.0, z: 0.0 };
- pub const FRONT: Self = Self { x: 0.0, y: 1.0, z: 1.0 };
+ pub const FRONT: Self = Self { x: 0.0, y: 0.0, z: 1.0 };
pub const LEFT: Self = Self { x: -1.0, y: 0.0, z: 0.0 };
pub const RIGHT: Self = Self { x: 1.0, y: 0.0, z: 0.0 };
pub const UP: Self = Self { x: 0.0, y: 1.0, z: 0.0 };