[][src]Struct kurbo::Affine

pub struct Affine(_);

A 2D affine transform.

Methods

impl Affine[src]

pub fn new(c: [f64; 6]) -> Affine[src]

Construct an affine transform from coefficients.

If the coefficients are (a, b, c, d, e, f), then the resulting transformation represents this augmented matrix:

| a c e |
| b d f |
| 0 0 1 |

Note that this convention is transposed from PostScript and Direct2D, but is consistent with the Wikipedia formulation of affine transformation as augmented matrix. The idea is that (A * B) * v == A * (B * v), where * is the Mul trait.

pub fn scale(s: f64) -> Affine[src]

An affine transform representing uniform scaling.

pub fn rotate(th: f64) -> Affine[src]

An affine transform representing rotation.

The convention for rotation is that a positive angle rotates a positive X direction into positive Y. Thus, in a Y-down coordinate system (as is common for graphics), it is a clockwise rotation, and in Y-up (traditional for math), it is anti-clockwise.

The angle, th, is expressed in radians.

pub fn translate<V: Into<Vec2>>(p: V) -> Affine[src]

An affine transform representing translation.

pub fn as_coeffs(self) -> [f64; 6][src]

Get the coefficients of the transform.

Trait Implementations

impl Clone for Affine[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for Affine[src]

impl From<Affine> for ColumnMatrix2x3<f64>[src]

impl From<ColumnMatrix2x3<f64>> for Affine[src]

impl From<TranslateScale> for Affine[src]

impl Copy for Affine[src]

impl Debug for Affine[src]

impl Mul<Point> for Affine[src]

type Output = Point

The resulting type after applying the * operator.

impl Mul<Affine> for Affine[src]

type Output = Affine

The resulting type after applying the * operator.

impl Mul<Affine> for f64[src]

type Output = Affine

The resulting type after applying the * operator.

impl Mul<PathEl> for Affine[src]

type Output = PathEl

The resulting type after applying the * operator.

impl Mul<BezPath> for Affine[src]

type Output = BezPath

The resulting type after applying the * operator.

impl<'a> Mul<&'a BezPath> for Affine[src]

type Output = BezPath

The resulting type after applying the * operator.

impl Mul<CubicBez> for Affine[src]

type Output = CubicBez

The resulting type after applying the * operator.

impl Mul<Line> for Affine[src]

type Output = Line

The resulting type after applying the * operator.

impl Mul<QuadBez> for Affine[src]

type Output = QuadBez

The resulting type after applying the * operator.

impl MulAssign<Affine> for Affine[src]

Auto Trait Implementations

impl Sync for Affine

impl Send for Affine

impl Unpin for Affine

impl RefUnwindSafe for Affine

impl UnwindSafe for Affine

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]