Struct TypedTranslation2D

Source
#[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>

Source

pub fn new(x: T, y: T) -> TypedTranslation2D<T, Src, Dst>

Source§

impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
where T: Copy,

Source

pub fn to_array(&self) -> [T; 2]

Source

pub fn to_tuple(&self) -> (T, T)

Source§

impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
where T: Copy + Zero,

Source

pub fn identity() -> TypedTranslation2D<T, Src, Dst>

Source§

impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
where T: Zero + PartialEq,

Source

pub fn is_identity(&self) -> bool

Source§

impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
where T: Copy + Add<Output = T>,

Source

pub fn transform_point(&self, p: &TypedPoint2D<T, Src>) -> TypedPoint2D<T, Dst>

Translate a point and cast its unit.

Source

pub fn transform_rect(&self, r: &TypedRect<T, Src>) -> TypedRect<T, Dst>

Translate a rectangle and cast its unit.

Source

pub fn transform_size(&self, s: &TypedSize2D<T, Src>) -> TypedSize2D<T, Dst>

No-op, just cast the unit.

Source

pub fn to_vector(&self) -> TypedVector2D<T, Src>

Cast into a 2D vector.

Source§

impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
where T: Copy + Neg<Output = T>,

Source

pub fn inverse(&self) -> TypedTranslation2D<T, Dst, Src>

Return the inverse transformation.

Source§

impl<T, Src, Dst> TypedTranslation2D<T, Src, Dst>
where T: Clone + Add<Output = T> + Mul<Output = T> + Div<Output = T> + Sub<Output = T> + Copy + Trig + PartialOrd + One + Zero,

Source

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>
where T: Copy + Add<Output = T>,

Source§

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>

Performs the + operation. Read more
Source§

impl<T, Src, Dst> Clone for TypedTranslation2D<T, Src, Dst>
where T: Clone,

Source§

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)

Performs copy-assignment from source. Read more
Source§

impl<T, Src, Dst> Debug for TypedTranslation2D<T, Src, Dst>
where T: Copy + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<T, Src, Dst> Default for TypedTranslation2D<T, Src, Dst>
where T: Copy + Zero,

Source§

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,

Source§

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,

Source§

fn hash<H>(&self, h: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T, Src, Dst> Into<TypedTransform2D<T, Src, Dst>> for TypedTranslation2D<T, Src, Dst>
where T: Clone + Add<Output = T> + Mul<Output = T> + Div<Output = T> + Sub<Output = T> + Copy + Trig + PartialOrd + One + Zero,

Source§

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,

Source§

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,

Source§

fn eq(&self, other: &TypedTranslation2D<T, Src, Dst>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T, Src, Dst1, Dst2> Sub<TypedTranslation2D<T, Dst1, Dst2>> for TypedTranslation2D<T, Src, Dst2>
where T: Copy + Sub<Output = T>,

Source§

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>

Performs the - operation. Read more
Source§

impl<T, Src, Dst> Copy for TypedTranslation2D<T, Src, Dst>
where T: Copy,

Source§

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>
where T: Send, Src: Send, Dst: Send,

§

impl<T, Src, Dst> Sync for TypedTranslation2D<T, Src, Dst>
where T: Sync, Src: Sync, Dst: Sync,

§

impl<T, Src, Dst> Unpin for TypedTranslation2D<T, Src, Dst>
where T: Unpin, Src: Unpin, Dst: Unpin,

§

impl<T, Src, Dst> UnwindSafe for TypedTranslation2D<T, Src, Dst>
where T: UnwindSafe, Src: UnwindSafe, Dst: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.