Trait Transform3

Source
pub trait Transform3<S>: Transform<Point3<S>> + Into<Matrix4<S>>
where S: BaseNum,
{ }

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.

Implementors§

Source§

impl<S> Transform3<S> for Matrix3<S>
where S: BaseFloat,

Source§

impl<S> Transform3<S> for Matrix4<S>
where S: BaseFloat,

Source§

impl<S, R> Transform3<S> for Decomposed<Vector3<S>, R>
where S: BaseFloat, R: Rotation3<S>,