+ | function apply(x : number, y : number) : _Vector2 |
矩阵左乘向量(x, y)。
|
+ | function child() : _Matrix2D |
创建子矩阵
|
+ | function clone() : _Matrix2D |
克隆矩阵。
|
+ | function getRotation() : number |
获得矩阵旋转的弧度值。
|
+ | function getTranslation() : _Vector2 |
得到矩阵的位移。 |
+ | function identity() |
矩阵归一化。
|
+ | function inverse() |
矩阵求逆。
|
+ | function mulLeft(mat : _Matrix2D) |
矩阵左乘mat矩阵。 |
+ | function mulRight(mat : _Matrix2D) |
矩阵右乘mat矩阵。 |
+ | function mulRotationLeft(r : number[, a : uint]) |
矩阵左乘旋转。
|
+ | function mulRotationRight(r : number[, a : uint]) |
矩阵右乘旋转。
|
+ | function mulScalingLeft(x : number, y : number[, a : uint]) |
矩阵左乘缩放。
|
+ | function mulScalingRight(x : number, y : number[, a : uint]) |
矩阵右乘缩放。
|
+ | function mulTranslationLeft(x : number, y : number[, a : uint]) |
矩阵左乘位移。
|
+ | function mulTranslationRight(x : number, y : number[, a : uint]) |
矩阵右乘位移。
|
+ | function set(mat : _Matrix2D) |
赋值。 |
+ | function setRotation(r : number[, a : uint]) |
设置矩阵的旋转。
|
+ | function setScaling(x : number, y : number[, a : uint]) |
设置矩阵的缩放。
|
+ | function setTranslation(x : number, y : number[, a : uint]) |
设置矩阵的位移。
|
+ | function transpose() |
矩阵转置。
|