fix rectangle snapping

This commit is contained in:
edwloef 2025-01-30 15:00:33 +01:00
parent 215cee8c82
commit c1ab626307
No known key found for this signature in database
2 changed files with 17 additions and 4 deletions

View file

@ -107,3 +107,13 @@ where
write!(f, "Point {{ x: {}, y: {} }}", self.x, self.y)
}
}
impl Point<f32> {
/// Snaps the [`Point`] to __unsigned__ integer coordinates.
pub fn snap(self) -> Point<u32> {
Point {
x: self.x.round() as u32,
y: self.y.round() as u32,
}
}
}