public function Matrix(a:Number = 1, b:Number = 0, c:Number = 0, d:Number = 1, tx:Number = 0, ty:Number = 0)
Parameters | a:Number (default = 1 )
|
|
| b:Number (default = 0 )
|
|
| c:Number (default = 0 )
|
|
| d:Number (default = 1 )
|
|
| tx:Number (default = 0 )
|
|
| ty:Number (default = 0 )
|
public function clone():Matrix
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Returns a copy of the Matrix
Returns public function concat(m:Matrix):Matrix
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Adds the Matrix the current one
Returns the matrix so the methods can be chained.
Parameters
Returns public function copyFrom(source:Matrix):Matrix
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Copies the values from another Matrix.
Returns the matrix so the methods can be chained.
Parameters
Returns public function deltaTransformPoint(point:Point):Point
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Uses the Matrix to transform the point without the translation values.
Returns a new Point. The original Point is unchanged.
Parameters
Returns public function determinant():Number
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Calculates the Matrix determinant
Returns public function identity():Matrix
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Resets the matrix to the default values.
Returns the matrix so the methods can be chained.
Returns public function invert():Matrix
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Inverts the Matrix.
Returns the matrix so the methods can be chained.
Returns public function rotate(angle:Number):Matrix
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Rotates the Matrix by the specified value.
Returns the matrix so the methods can be chained.
Parameters
Returns public function scale(x:Number, y:Number):Matrix
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Scales the Matrix by the specified amount.
Returns the matrix so the methods can be chained.
Parameters
Returns public function toString():String
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Returns a string representation of the Matrix.
Returns public function transformPoint(point:Point):Point
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Uses the Matrix to transform the point including the translation values.
Returns a new Point. The original Point is unchanged.
Parameters
Returns public function translate(x:Number, y:Number):Matrix
Language Version : | ActionScript 3.0 |
Product Version : | FlexJS 0.7 |
Runtime Versions : | Flash Player 10.2, AIR 2.6 |
Moves the Matrix by the specified amount
Returns the matrix so the methods can be chained.
Parameters
Returns
Mon Sep 5 2016, 07:19 AM -07:00