[][src]Trait nannou::prelude::Rotation2

pub trait Rotation2<S>: Rotation<Point2<S>> + Into<Matrix2<S>> + Into<Basis2<S>> where
    S: BaseFloat
{ fn from_angle<A>(theta: A) -> Self
    where
        A: Into<Rad<S>>
; }

A two-dimensional rotation.

Required methods

fn from_angle<A>(theta: A) -> Self where
    A: Into<Rad<S>>, 

Create a rotation by a given angle. Thus is a redundant case of both from_axis_angle() and from_euler() for 2D space.

Loading content...

Implementors

impl<S> Rotation2<S> for Basis2<S> where
    S: BaseFloat
[src]

Loading content...