mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-09 12:28:29 +00:00
Remove redundant #[allow(...)]
This commit is contained in:
parent
dea2699188
commit
3f3fc9fcd9
@ -24,7 +24,6 @@ impl Plane {
|
|||||||
self.origin + self.coords.a * u + self.coords.b * v
|
self.origin + self.coords.a * u + self.coords.b * v
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(unused)] // code to use it is being worked on
|
|
||||||
pub fn project_point(&self, point: impl Into<Point<3>>) -> Point<2> {
|
pub fn project_point(&self, point: impl Into<Point<3>>) -> Point<2> {
|
||||||
let point = point.into();
|
let point = point.into();
|
||||||
let origin_to_point = point - self.origin;
|
let origin_to_point = point - self.origin;
|
||||||
|
Loading…
Reference in New Issue
Block a user