pub trait TransformPoint {
// Required method
fn transform_point(&self, point: impl Into<Vec3>) -> Vec3;
}
Expand description
A trait for point transformation methods.
Required Methods§
Sourcefn transform_point(&self, point: impl Into<Vec3>) -> Vec3
fn transform_point(&self, point: impl Into<Vec3>) -> Vec3
Transform a point.
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.