Specifies the a property for the new matrix.
Specifies the b property for the new matrix.
Specifies the c property for the new matrix.
Specifies the d property for the new matrix.
Specifies the tx property for the new matrix.
Specifies the ty property for the new matrix.
Position (0, 0) in a 3x3 affine transformation matrix.
Position (0, 1) in a 3x3 affine transformation matrix.
Position (1, 0) in a 3x3 affine transformation matrix.
Position (1, 1) in a 3x3 affine transformation matrix.
Position (2, 0) in a 3x3 affine transformation matrix.
Position (2, 1) in a 3x3 affine transformation matrix.
Multiplier for converting degrees to radians. Used internally by Matrix2D.
An identity matrix, representing a null transformation.
Appends the specified matrix properties to this matrix. All parameters are required.
This is the equivalent of multiplying (this matrix) * (specified matrix)
.
This matrix. Useful for chaining method calls.
Returns a clone of the Matrix2D instance.
a clone of the Matrix2D instance.
Decomposes the matrix into transform properties (x, y, scaleX, scaleY, and rotation). Note that these values may not match the transform properties you used to generate the matrix, though they will produce the same visual results.
The target, or a new generic object with the transform properties applied.
Sets the properties of the matrix to those of an identity matrix (one that applies a null transformation).
This matrix. Useful for chaining method calls.
Inverts the matrix, causing it to perform the opposite transformation.
This matrix. Useful for chaining method calls.
Returns true if the matrix is an identity matrix.
Prepends the specified matrix properties to this matrix.
This is the equivalent of multiplying (specified matrix) * (this matrix)
.
All parameters are required.
This matrix. Useful for chaining method calls.
Applies a clockwise rotation transformation to the matrix.
This matrix. Useful for chaining method calls.
Applies a scale transformation to the matrix.
This matrix. Useful for chaining method calls.
Sets the specified values on this instance.
This instance. Useful for chaining method calls.
Applies a skew transformation to the matrix.
This matrix. Useful for chaining method calls.
Returns a string representation of this object.
a string representation of the instance.
Translates the matrix on the x and y axes.
This matrix. Useful for chaining method calls.
Matrix2D
Represents an affine transformation matrix, and provides tools for constructing and concatenating matrices.
This matrix can be visualized as:
[ a c tx b d ty 0 0 1 ]
Note the locations of b and c.
Visit http://createjs.com/ for documentation, updates and examples.
Copyright (c) 2017 gskinner.com, inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.