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