Trait angular_units::IntoAngle [] [src]

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

Construct an angle by converting from another type.

IntoAngle is provided automatically based on FromAngle.

Associated Types

Required Methods

Construct an angle from self.

Implementors