Interface AffineTransform

interface AffineTransform {
    rotation: number;
    scale: number;
    translation: Point;
}

Properties

rotation: number

Clockwise angle in degrees.

scale: number

Scaling factor from source to destination.

translation: Point

Translation of source points along x and y axes.