aboutsummaryrefslogtreecommitdiff
path: root/src/core/vector2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/vector2.rs')
-rw-r--r--src/core/vector2.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/vector2.rs b/src/core/vector2.rs
index 3aadb46..858068e 100644
--- a/src/core/vector2.rs
+++ b/src/core/vector2.rs
@@ -60,8 +60,8 @@ impl Vector2f {
pub fn floor(&self) -> Self {
Self::new_xy(
- self.x.ceil(),
- self.y.ceil()
+ self.x.floor(),
+ self.y.floor()
)
}
}