pub struct Matrix2dTransform<T: CoordinateType> {
    matrix: Matrix2d<T>,
}
Expand description

Description of a transformation in the euclidean plane by a 2x2 matrix A. Transforming a point p is computed by the matrix product A*p.

Fields§

§matrix: Matrix2d<T>

Implementations§

source§

impl<T: CoordinateType> Matrix2dTransform<T>

source

pub fn new(matrix: Matrix2d<T>) -> Self

Create a new transform based on a matrix.

source

pub fn new_rotation90(angle: Angle) -> Self

Create a rotation by an integer multiple of 90 degrees.

source

pub fn new_scaling(factor: T) -> Self

Create a scaling by a factor.

source

pub fn new_mirror_x() -> Self

Mirror at the x-axis.

source

pub fn new_mirror_y() -> Self

Mirror at the y-axis.

source

pub fn transform_point(&self, p: Point<T>) -> Point<T>

Apply the transformation to a single point.

source

pub fn to_matrix2d(&self) -> Matrix2d<T>

Return the matrix describing this transformation.

source

pub fn try_invert(&self) -> Option<Self>

Get the inverse transformation.

Trait Implementations§

source§

impl<T: Clone + CoordinateType> Clone for Matrix2dTransform<T>

source§

fn clone(&self) -> Matrix2dTransform<T>

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: Debug + CoordinateType> Debug for Matrix2dTransform<T>

source§

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

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

impl<'de, T> Deserialize<'de> for Matrix2dTransform<T>where T: Deserialize<'de> + CoordinateType,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T: Hash + CoordinateType> Hash for Matrix2dTransform<T>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

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: PartialEq + CoordinateType> PartialEq<Matrix2dTransform<T>> for Matrix2dTransform<T>

source§

fn eq(&self, other: &Matrix2dTransform<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> Serialize for Matrix2dTransform<T>where T: Serialize + CoordinateType,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T: Eq + CoordinateType> Eq for Matrix2dTransform<T>

source§

impl<T: CoordinateType> StructuralEq for Matrix2dTransform<T>

source§

impl<T: CoordinateType> StructuralPartialEq for Matrix2dTransform<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Matrix2dTransform<T>where T: RefUnwindSafe,

§

impl<T> Send for Matrix2dTransform<T>where T: Send,

§

impl<T> Sync for Matrix2dTransform<T>where T: Sync,

§

impl<T> Unpin for Matrix2dTransform<T>where T: Unpin,

§

impl<T> UnwindSafe for Matrix2dTransform<T>where T: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,

source§

impl<T> TextType for Twhere T: Eq + Hash + Clone + Debug,