pub trait IsPlane3D<P, N>: Sizedwhere
P: Is3D,
N: IsNormalized3D,{
// Required methods
fn new(origin: P, u: N, v: N) -> Self;
fn origin(&self) -> P;
fn u(&self) -> N;
fn v(&self) -> N;
}Expand description
IsPlane3D is a trait used for planes within 3D space
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".