Skip to main content

Tuple2Geometry

Trait Tuple2Geometry 

Source
pub trait Tuple2Geometry<A> {
    // Required method
    fn rotate(self, deg: A) -> Self;
}

Required Methods§

Source

fn rotate(self, deg: A) -> Self

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.

Implementations on Foreign Types§

Source§

impl<A> Tuple2Geometry<A> for (A, A)
where f32: Cast<A>, Self: Cast<V2>,

Source§

fn rotate(self, rad: A) -> Self

Implementors§