#[repr(C)]pub struct TypedTranslation2D<T, Src, Dst> {
pub x: T,
pub y: T,
/* private fields */
}
Expand description
A 2d transformation from a space to another that can only express translations.
The main benefit of this type over a TypedVector2D is the ability to cast between a source and a destination spaces.
Example:
use euclid::{TypedTranslation2D, TypedPoint2D, point2};
struct ParentSpace;
struct ChildSpace;
type ScrollOffset = TypedTranslation2D<i32, ParentSpace, ChildSpace>;
type ParentPoint = TypedPoint2D<i32, ParentSpace>;
type ChildPoint = TypedPoint2D<i32, ChildSpace>;
let scrolling = ScrollOffset::new(0, 100);
let p1: ParentPoint = point2(0, 0);
let p2: ChildPoint = scrolling.transform_point(&p1);
Fields§
§x: T
§y: T
Implementations§
Source§impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
pub fn new(x: T, y: T) -> TypedTranslation2D<T, Src, Dst>
Source§impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>where
T: Copy,
impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>where
T: Copy,
Source§impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
pub fn identity() -> TypedTranslation2D<T, Src, Dst>
Source§impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
pub fn is_identity(&self) -> bool
Source§impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
Sourcepub fn transform_point(&self, p: &TypedPoint2D<T, Src>) -> TypedPoint2D<T, Dst>
pub fn transform_point(&self, p: &TypedPoint2D<T, Src>) -> TypedPoint2D<T, Dst>
Translate a point and cast its unit.
Sourcepub fn transform_rect(&self, r: &TypedRect<T, Src>) -> TypedRect<T, Dst>
pub fn transform_rect(&self, r: &TypedRect<T, Src>) -> TypedRect<T, Dst>
Translate a rectangle and cast its unit.
Sourcepub fn transform_size(&self, s: &TypedSize2D<T, Src>) -> TypedSize2D<T, Dst>
pub fn transform_size(&self, s: &TypedSize2D<T, Src>) -> TypedSize2D<T, Dst>
No-op, just cast the unit.
Sourcepub fn to_vector(&self) -> TypedVector2D<T, Src>
pub fn to_vector(&self) -> TypedVector2D<T, Src>
Cast into a 2D vector.
Source§impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
Sourcepub fn inverse(&self) -> TypedTranslation2D<T, Dst, Src>
pub fn inverse(&self) -> TypedTranslation2D<T, Dst, Src>
Return the inverse transformation.
Source§impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
Sourcepub fn to_transform(&self) -> TypedTransform2D<T, Src, Dst>
pub fn to_transform(&self) -> TypedTransform2D<T, Src, Dst>
Returns the matrix representation of this translation.
Trait Implementations§
Source§impl<T, Src, Dst1, Dst2> Add<TypedTranslation2D<T, Dst1, Dst2>> for TypedTranslation2D<T, Src, Dst1>
impl<T, Src, Dst1, Dst2> Add<TypedTranslation2D<T, Dst1, Dst2>> for TypedTranslation2D<T, Src, Dst1>
Source§type Output = TypedTranslation2D<T, Src, Dst2>
type Output = TypedTranslation2D<T, Src, Dst2>
The resulting type after applying the
+
operator.Source§fn add(
self,
other: TypedTranslation2D<T, Dst1, Dst2>,
) -> TypedTranslation2D<T, Src, Dst2>
fn add( self, other: TypedTranslation2D<T, Dst1, Dst2>, ) -> TypedTranslation2D<T, Src, Dst2>
Performs the
+
operation. Read moreSource§impl<T, Src, Dst> Clone for TypedTranslation2D<T, Src, Dst>where
T: Clone,
impl<T, Src, Dst> Clone for TypedTranslation2D<T, Src, Dst>where
T: Clone,
Source§fn clone(&self) -> TypedTranslation2D<T, Src, Dst>
fn clone(&self) -> TypedTranslation2D<T, Src, Dst>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T, Src, Dst> Debug for TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> Debug for TypedTranslation2D<T, Src, Dst>
Source§impl<T, Src, Dst> Default for TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> Default for TypedTranslation2D<T, Src, Dst>
Source§fn default() -> TypedTranslation2D<T, Src, Dst>
fn default() -> TypedTranslation2D<T, Src, Dst>
Returns the “default value” for a type. Read more
Source§impl<T, Src, Dst> From<TypedVector2D<T, Src>> for TypedTranslation2D<T, Src, Dst>where
T: Copy,
impl<T, Src, Dst> From<TypedVector2D<T, Src>> for TypedTranslation2D<T, Src, Dst>where
T: Copy,
Source§fn from(v: TypedVector2D<T, Src>) -> TypedTranslation2D<T, Src, Dst>
fn from(v: TypedVector2D<T, Src>) -> TypedTranslation2D<T, Src, Dst>
Converts to this type from the input type.
Source§impl<T, Src, Dst> Hash for TypedTranslation2D<T, Src, Dst>where
T: Hash,
impl<T, Src, Dst> Hash for TypedTranslation2D<T, Src, Dst>where
T: Hash,
Source§impl<T, Src, Dst> Into<TypedTransform2D<T, Src, Dst>> for TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> Into<TypedTransform2D<T, Src, Dst>> for TypedTranslation2D<T, Src, Dst>
Source§fn into(self) -> TypedTransform2D<T, Src, Dst>
fn into(self) -> TypedTransform2D<T, Src, Dst>
Converts this type into the (usually inferred) input type.
Source§impl<T, Src, Dst> Into<TypedVector2D<T, Src>> for TypedTranslation2D<T, Src, Dst>where
T: Copy,
impl<T, Src, Dst> Into<TypedVector2D<T, Src>> for TypedTranslation2D<T, Src, Dst>where
T: Copy,
Source§fn into(self) -> TypedVector2D<T, Src>
fn into(self) -> TypedVector2D<T, Src>
Converts this type into the (usually inferred) input type.
Source§impl<T, Src, Dst> PartialEq for TypedTranslation2D<T, Src, Dst>where
T: PartialEq,
impl<T, Src, Dst> PartialEq for TypedTranslation2D<T, Src, Dst>where
T: PartialEq,
Source§fn eq(&self, other: &TypedTranslation2D<T, Src, Dst>) -> bool
fn eq(&self, other: &TypedTranslation2D<T, Src, Dst>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<T, Src, Dst1, Dst2> Sub<TypedTranslation2D<T, Dst1, Dst2>> for TypedTranslation2D<T, Src, Dst2>
impl<T, Src, Dst1, Dst2> Sub<TypedTranslation2D<T, Dst1, Dst2>> for TypedTranslation2D<T, Src, Dst2>
Source§type Output = TypedTranslation2D<T, Src, Dst1>
type Output = TypedTranslation2D<T, Src, Dst1>
The resulting type after applying the
-
operator.Source§fn sub(
self,
other: TypedTranslation2D<T, Dst1, Dst2>,
) -> TypedTranslation2D<T, Src, Dst1>
fn sub( self, other: TypedTranslation2D<T, Dst1, Dst2>, ) -> TypedTranslation2D<T, Src, Dst1>
Performs the
-
operation. Read moreimpl<T, Src, Dst> Copy for TypedTranslation2D<T, Src, Dst>where
T: Copy,
impl<T, Src, Dst> Eq for TypedTranslation2D<T, Src, Dst>where
T: Eq,
Auto Trait Implementations§
impl<T, Src, Dst> Freeze for TypedTranslation2D<T, Src, Dst>where
T: Freeze,
impl<T, Src, Dst> RefUnwindSafe for TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> Send for TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> Sync for TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> Unpin for TypedTranslation2D<T, Src, Dst>
impl<T, Src, Dst> UnwindSafe for TypedTranslation2D<T, Src, Dst>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more