pub trait IsDirectionField3D {
// Required method
fn direction_at<P>(&self, p: &P) -> Norm3D
where P: Is3D;
}Expand description
IsDirectionField3D is a trait used for fields of directions within 3D space
Required Methods§
Sourcefn direction_at<P>(&self, p: &P) -> Norm3Dwhere
P: Is3D,
fn direction_at<P>(&self, p: &P) -> Norm3Dwhere
P: Is3D,
Should return the direction at the given position
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".