Remove unused code

This commit is contained in:
Hanno Braun 2025-02-24 19:21:07 +01:00
parent 07096243b1
commit dd0074abdd

View File

@ -24,17 +24,6 @@ impl Vertex {
}
}
impl<P> From<P> for Vertex
where
P: Into<Point<3>>,
{
fn from(point: P) -> Self {
Self {
point: point.into(),
}
}
}
impl Object for Vertex {
fn display(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Vertex")