pub trait SplitEdge: Sized {
// Required method
fn split_edge(
&self,
half_edge: &Handle<HalfEdge>,
point: impl Into<Point<1>>,
core: &mut Core,
) -> (Self, [[Handle<HalfEdge>; 2]; 2]);
}
Expand description
Split a pair of HalfEdge
s into two
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.