pub trait Vertex2d: Vertex {
// Required method
fn point2(self) -> [Self::Scalar; 2];
}
Expand description
Vertex types that have at least 2 dimensions.
Required Methods§
Object Safety§
This trait is not object safe.
pub trait Vertex2d: Vertex {
// Required method
fn point2(self) -> [Self::Scalar; 2];
}
Vertex types that have at least 2 dimensions.