Trait Transform2

Source
pub trait Transform2<S>: Transform<Point2<S>> + Into<Matrix3<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> Transform2<S> for Matrix3<S>
where S: BaseFloat,

Source§

impl<S, R> Transform2<S> for Decomposed<Vector2<S>, R>
where S: BaseFloat, R: Rotation2<S>,