matrix.hx

来自「ocaml编写的一个flash编译器」· HX 代码 · 共 24 行

HX
24
字号
package flash.geom;extern class Matrix {	function new(?a : Float, ?b : Float, ?c : Float, ?d : Float, ?tx : Float, ?ty : Float) : Void;	var a : Float;	var b : Float;	var c : Float;	function clone() : flash.geom.Matrix;	function concat(m : flash.geom.Matrix) : Void;	function createBox(scaleX : Float, scaleY : Float, ?rotation : Float, ?tx : Float, ?ty : Float) : Void;	function createGradientBox(width : Float, height : Float, ?rotation : Float, ?tx : Float, ?ty : Float) : Void;	var d : Float;	function deltaTransformPoint(point : flash.geom.Point) : flash.geom.Point;	function identity() : Void;	function invert() : Void;	function rotate(angle : Float) : Void;	function scale(sx : Float, sy : Float) : Void;	function toString() : String;	function transformPoint(point : flash.geom.Point) : flash.geom.Point;	function translate(dx : Float, dy : Float) : Void;	var tx : Float;	var ty : Float;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?