Remove redundant #[allow(...)]

This commit is contained in:
Hanno Braun 2025-01-20 19:33:08 +01:00
parent 467b66750f
commit d4a58a933e

View File

@ -9,7 +9,6 @@ pub struct Vertex {
}
impl Vertex {
#[allow(unused)] // code that uses it is being worked on
pub fn translate(self, offset: impl Into<Vector<3>>) -> Self {
Self {
point: self.point + offset,