diff --git a/crates/fj-kernel/src/objects/full/edge.rs b/crates/fj-kernel/src/objects/full/edge.rs index c25653416..7ff6415a6 100644 --- a/crates/fj-kernel/src/objects/full/edge.rs +++ b/crates/fj-kernel/src/objects/full/edge.rs @@ -1,5 +1,3 @@ -use std::fmt; - use fj_interop::ext::ArrayExt; use fj_math::Point; @@ -95,16 +93,6 @@ impl HalfEdge { } } -impl fmt::Display for HalfEdge { - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - let [a, b] = self.boundary(); - write!(f, "edge from {a:?} to {b:?}")?; - write!(f, " on {:?}", self.global_form().curve())?; - - Ok(()) - } -} - /// An undirected edge, defined in global (3D) coordinates /// /// In contrast to [`HalfEdge`], `GlobalEdge` is undirected, meaning it has no