30 lines
1.4 KiB
Haxe
Raw Normal View History

2025-01-22 16:18:30 +01:00
package flash.geom;
extern class Matrix {
var a : Float;
var b : Float;
var c : Float;
var d : Float;
var tx : Float;
var ty : Float;
function new(a : Float = 1, b : Float = 0, c : Float = 0, d : Float = 1, tx : Float = 0, ty : Float = 0) : Void;
function clone() : Matrix;
function concat(m : Matrix) : Void;
@:require(flash11) function copyColumnFrom(column : UInt, vector3D : Vector3D) : Void;
@:require(flash11) function copyColumnTo(column : UInt, vector3D : Vector3D) : Void;
@:require(flash11) function copyFrom(sourceMatrix : Matrix) : Void;
@:require(flash11) function copyRowFrom(row : UInt, vector3D : Vector3D) : Void;
@:require(flash11) function copyRowTo(row : UInt, vector3D : Vector3D) : Void;
function createBox(scaleX : Float, scaleY : Float, rotation : Float = 0, tx : Float = 0, ty : Float = 0) : Void;
function createGradientBox(width : Float, height : Float, rotation : Float = 0, tx : Float = 0, ty : Float = 0) : Void;
function deltaTransformPoint(point : Point) : Point;
function identity() : Void;
function invert() : Void;
function rotate(angle : Float) : Void;
function scale(sx : Float, sy : Float) : Void;
@:require(flash11) function setTo(aa : Float, ba : Float, ca : Float, da : Float, txa : Float, tya : Float) : Void;
function toString() : String;
function transformPoint(point : Point) : Point;
function translate(dx : Float, dy : Float) : Void;
}