Struct euclid::TypedRotation2D
[−]
[src]
#[repr(C)]pub struct TypedRotation2D<T, Src, Dst> { pub angle: T, // some fields omitted }
A transform that can represent rotations in 2d, represented as an angle in radians.
Fields
angle: T
Methods
impl<T, Src, Dst> TypedRotation2D<T, Src, Dst>
[src]
pub fn new(angle: Angle<T>) -> Self
[src]
Creates a rotation from an angle in radians.
pub fn radians(angle: T) -> Self
[src]
pub fn identity() -> Self where
T: Zero,
[src]
T: Zero,
Creates the identity rotation.
impl<T, Src, Dst> TypedRotation2D<T, Src, Dst> where
T: Clone,
[src]
T: Clone,
impl<T, Src, Dst> TypedRotation2D<T, Src, Dst> where
T: Copy + Clone + Add<T, Output = T> + Sub<T, Output = T> + Mul<T, Output = T> + Div<T, Output = T> + Neg<Output = T> + ApproxEq<T> + PartialOrd + Float + One + Zero,
[src]
T: Copy + Clone + Add<T, Output = T> + Sub<T, Output = T> + Mul<T, Output = T> + Div<T, Output = T> + Neg<Output = T> + ApproxEq<T> + PartialOrd + Float + One + Zero,
pub fn to_3d(&self) -> TypedRotation3D<T, Src, Dst>
[src]
Creates a 3d rotation (around the z axis) from this 2d rotation.
pub fn inverse(&self) -> TypedRotation2D<T, Dst, Src>
[src]
Returns the inverse of this rotation.
pub fn pre_rotate<NewSrc>(
&self,
other: &TypedRotation2D<T, NewSrc, Src>
) -> TypedRotation2D<T, NewSrc, Dst>
[src]
&self,
other: &TypedRotation2D<T, NewSrc, Src>
) -> TypedRotation2D<T, NewSrc, Dst>
Returns a rotation representing the other rotation followed by this rotation.
pub fn post_rotate<NewDst>(
&self,
other: &TypedRotation2D<T, Dst, NewDst>
) -> TypedRotation2D<T, Src, NewDst>
[src]
&self,
other: &TypedRotation2D<T, Dst, NewDst>
) -> TypedRotation2D<T, Src, NewDst>
Returns a rotation representing this rotation followed by the other rotation.
pub fn transform_point(
&self,
point: &TypedPoint2D<T, Src>
) -> TypedPoint2D<T, Dst>
[src]
&self,
point: &TypedPoint2D<T, Src>
) -> TypedPoint2D<T, Dst>
Returns the given 2d point transformed by this rotation.
The input point must be use the unit Src, and the returned point has the unit Dst.
pub fn transform_vector(
&self,
vector: &TypedVector2D<T, Src>
) -> TypedVector2D<T, Dst>
[src]
&self,
vector: &TypedVector2D<T, Src>
) -> TypedVector2D<T, Dst>
Returns the given 2d vector transformed by this rotation.
The input point must be use the unit Src, and the returned point has the unit Dst.
impl<T, Src, Dst> TypedRotation2D<T, Src, Dst> where
T: Copy + Clone + Add<T, Output = T> + Mul<T, Output = T> + Div<T, Output = T> + Sub<T, Output = T> + Trig + PartialOrd + One + Zero,
[src]
T: Copy + Clone + Add<T, Output = T> + Mul<T, Output = T> + Div<T, Output = T> + Sub<T, Output = T> + Trig + PartialOrd + One + Zero,
pub fn to_transform(&self) -> TypedTransform2D<T, Src, Dst>
[src]
Returns the matrix representation of this rotation.
Trait Implementations
impl<T: Clone, Src, Dst> Clone for TypedRotation2D<T, Src, Dst>
[src]
fn clone(&self) -> Self
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<T: Copy, Src, Dst> Copy for TypedRotation2D<T, Src, Dst>
[src]
impl<'de, T, Src, Dst> Deserialize<'de> for TypedRotation2D<T, Src, Dst> where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl<T, Src, Dst> Serialize for TypedRotation2D<T, Src, Dst> where
T: Serialize,
[src]
T: Serialize,
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
S: Serializer,
[src]
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<T, Src, Dst> Eq for TypedRotation2D<T, Src, Dst> where
T: Eq,
[src]
T: Eq,
impl<T, Src, Dst> PartialEq for TypedRotation2D<T, Src, Dst> where
T: PartialEq,
[src]
T: PartialEq,
fn eq(&self, other: &Self) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<T, Src, Dst> Hash for TypedRotation2D<T, Src, Dst> where
T: Hash,
[src]
T: Hash,