Remove redundant #[allow(...)]

This commit is contained in:
Hanno Braun 2025-01-09 18:53:50 +01:00
parent acd13fd925
commit 3683caeb22

View File

@ -15,7 +15,6 @@ impl Plane {
self.coords.b
}
#[allow(unused)] // code to use it is being worked on
pub fn normal(&self) -> Vector<3> {
self.u().cross(self.v()).normalize()
}