diff --git a/experiments/2024-12-09/src/topology/vertex.rs b/experiments/2024-12-09/src/topology/vertex.rs index bad8cfa40..b7a492c1f 100644 --- a/experiments/2024-12-09/src/topology/vertex.rs +++ b/experiments/2024-12-09/src/topology/vertex.rs @@ -24,17 +24,6 @@ impl Vertex { } } -impl

From

for Vertex -where - P: Into>, -{ - 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")