Remove unused code

This commit is contained in:
Hanno Braun 2024-07-29 19:27:03 +02:00
parent 14e1982545
commit b553b1eaea

View File

@ -123,12 +123,6 @@ where
}
}
/// Returned by [`Triangle::from_points`], if the points don't form a triangle
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct NotATriangle<const D: usize> {
pub points: [Point<D>; 3],
}
/// Winding direction of a triangle.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub enum Winding {