pub trait Transform2: Transform<Point2<Self::Scalar>> + Into<Matrix3<Self::Scalar>> {
    type Scalar: BaseNum;
}

Required Associated Types§

Object Safety§

This trait is not object safe.

Implementors§

source§

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

§

type Scalar = S

source§

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

§

type Scalar = S