ART - Core
ART - Shapes
Elements
Animations
Ajax
Natives
Classes
Utilities
ART.Transform
ART.Transform lets you manipulate ART objects by moving, scaling and rotating them.
You can also use a custom homogeneous transformation matrix to create advanced transforms.
ART.Shape implements ART.Transform as a mixin which means it has all ART.Transform methods available.
This documentation refers to the "origin". This refers to the 0,0 coordinate in a shape or group. Often the top left corner.
ART.Transform method: constructor
Typically you won't use this constructor yourself. Instead, you'll use the methods as they're implemented on shapes or groups.
Syntax:
var transform = new ART.Transform([xx, yx, xy, yy[, x, y]]);
Arguments:
- xx - (number) multiplier to scale the x axis (default: 1)
- yx - (number) multiplier to skew the x axis (default: 0)
- xy - (number) multiplier to skew the y axis (default: 0)
- yy - (number) multiplier to scale y scale (default: 1)
- x - (number) number of units to move in the horizontal direction (default: 0)
- y - (number) number of units to move in the vertical direction (default: 0)
The arguments correspond to the following homogeneous transformation matrix:
xx xy x yx yy y 0 0 1
The default transformation is the [identity matrix]:
1 0 0 0 1 0 0 0 1
Alternative Syntax:
var transform = new ART.Transform(transform);
Arguments:
- transform - (ART.Transform) an existing transform to clone.
ART.Transform method: transform
Modifies the current transform by multiplying the current values with some new values. This method can be used to create complex transformations. Typically you won't use this method yourself but rather one of the other convenient methods.
Note: The order of which multiplied transforms are applied is significant.
Syntax:
instance.transform(xx, yx, xy, yy[, x, y]);
Arguments:
- xx - (number) multiplier to scale the x axis (default: 1)
- yx - (number) multiplier to skew the x axis (default: 0)
- xy - (number) multiplier to skew the y axis (default: 0)
- yy - (number) multiplier to scale y scale (default: 1)
- x - (number) number of units to move in the horizontal direction (default: 0)
- y - (number) number of units to move in the vertical direction (default: 0)
The arguments correspond to the following matrix multiplication:
result current arguments xx xy x xx xy x xx xy x yx yy y = yx yy y * yx yy y 0 0 1 0 0 1 0 0 1
Alternative Syntax:
instance.transform(transform);
Arguments:
- transform - (ART.Transform) an existing transform object.
Returns:
- The current ART.Transform instance or shape
ART.Transform method: transformTo
Resets the transform to some new values. This method has the same arguments as the constructor.
This is typically used to reset the transform of a shape to some absolute value.
Syntax:
instance.transformTo([xx, yx, xy, yy[, x, y]]); instance.transformTo([transform]);
ART.Transform method: move
Moves the origin x/y units in the horizontal/vertical direction.
Syntax:
transform.move(x, y);
Arguments:
- x - (number) The number of units to move in the horizontal direction.
- y - (number) The number of units to move in the vertical direction.
Returns:
- The current ART.Transform instance or shape
ART.Transform method: moveTo
Moves the origin to an absolute point.
Syntax:
transform.moveTo(x, y);
Arguments:
- x - (number) The position within it's parent along the horizontal axis.
- y - (number) The position within it's parent along the vertical axis.
Returns:
- The current ART.Transform instance or shape