pub trait IntoAngle<To>where
    To: Angle<Scalar = Self::OutputScalar>,
{ type OutputScalar: Float; fn into_angle(self) -> To; }
Expand description

Construct an angle by converting from another type.

IntoAngle is provided automatically based on FromAngle.

Required Associated Types§

Required Methods§

Construct an angle from self.

Implementors§