|
@@ -5,15 +5,22 @@ package flash.display;
|
|
function beginBitmapFill(bitmap : BitmapData, ?matrix : flash.geom.Matrix, repeat : Bool = true, smooth : Bool = false) : Void;
|
|
function beginBitmapFill(bitmap : BitmapData, ?matrix : flash.geom.Matrix, repeat : Bool = true, smooth : Bool = false) : Void;
|
|
function beginFill(color : UInt, alpha : Float = 1) : Void;
|
|
function beginFill(color : UInt, alpha : Float = 1) : Void;
|
|
function beginGradientFill(type : GradientType, colors : Array<UInt>, alphas : Array<Dynamic>, ratios : Array<Dynamic>, ?matrix : flash.geom.Matrix, ?spreadMethod : SpreadMethod, ?interpolationMethod : InterpolationMethod, focalPointRatio : Float = 0) : Void;
|
|
function beginGradientFill(type : GradientType, colors : Array<UInt>, alphas : Array<Dynamic>, ratios : Array<Dynamic>, ?matrix : flash.geom.Matrix, ?spreadMethod : SpreadMethod, ?interpolationMethod : InterpolationMethod, focalPointRatio : Float = 0) : Void;
|
|
|
|
+ @:require(flash10) function beginShaderFill(shader : Shader, ?matrix : flash.geom.Matrix) : Void;
|
|
function clear() : Void;
|
|
function clear() : Void;
|
|
|
|
+ @:require(flash10) function copyFrom(sourceGraphics : Graphics) : Void;
|
|
function curveTo(controlX : Float, controlY : Float, anchorX : Float, anchorY : Float) : Void;
|
|
function curveTo(controlX : Float, controlY : Float, anchorX : Float, anchorY : Float) : Void;
|
|
function drawCircle(x : Float, y : Float, radius : Float) : Void;
|
|
function drawCircle(x : Float, y : Float, radius : Float) : Void;
|
|
function drawEllipse(x : Float, y : Float, width : Float, height : Float) : Void;
|
|
function drawEllipse(x : Float, y : Float, width : Float, height : Float) : Void;
|
|
|
|
+ @:require(flash10) function drawGraphicsData(graphicsData : flash.Vector<IGraphicsData>) : Void;
|
|
|
|
+ @:require(flash10) function drawPath(commands : flash.Vector<Int>, data : flash.Vector<Float>, ?winding : GraphicsPathWinding) : Void;
|
|
function drawRect(x : Float, y : Float, width : Float, height : Float) : Void;
|
|
function drawRect(x : Float, y : Float, width : Float, height : Float) : Void;
|
|
function drawRoundRect(x : Float, y : Float, width : Float, height : Float, ellipseWidth : Float, ?ellipseHeight : Float) : Void;
|
|
function drawRoundRect(x : Float, y : Float, width : Float, height : Float, ellipseWidth : Float, ?ellipseHeight : Float) : Void;
|
|
function drawRoundRectComplex(x : Float, y : Float, width : Float, height : Float, topLeftRadius : Float, topRightRadius : Float, bottomLeftRadius : Float, bottomRightRadius : Float) : Void;
|
|
function drawRoundRectComplex(x : Float, y : Float, width : Float, height : Float, topLeftRadius : Float, topRightRadius : Float, bottomLeftRadius : Float, bottomRightRadius : Float) : Void;
|
|
|
|
+ @:require(flash10) function drawTriangles(vertices : flash.Vector<Float>, ?indices : flash.Vector<Int>, ?uvtData : flash.Vector<Float>, ?culling : TriangleCulling) : Void;
|
|
function endFill() : Void;
|
|
function endFill() : Void;
|
|
|
|
+ @:require(flash10) function lineBitmapStyle(bitmap : BitmapData, ?matrix : flash.geom.Matrix, repeat : Bool = true, smooth : Bool = false) : Void;
|
|
function lineGradientStyle(type : GradientType, colors : Array<UInt>, alphas : Array<Dynamic>, ratios : Array<Dynamic>, ?matrix : flash.geom.Matrix, ?spreadMethod : SpreadMethod, ?interpolationMethod : InterpolationMethod, focalPointRatio : Float = 0) : Void;
|
|
function lineGradientStyle(type : GradientType, colors : Array<UInt>, alphas : Array<Dynamic>, ratios : Array<Dynamic>, ?matrix : flash.geom.Matrix, ?spreadMethod : SpreadMethod, ?interpolationMethod : InterpolationMethod, focalPointRatio : Float = 0) : Void;
|
|
|
|
+ @:require(flash10) function lineShaderStyle(shader : Shader, ?matrix : flash.geom.Matrix) : Void;
|
|
function lineStyle(?thickness : Float, color : UInt = 0, alpha : Float = 1, pixelHinting : Bool = false, ?scaleMode : LineScaleMode, ?caps : CapsStyle, ?joints : JointStyle, miterLimit : Float = 3) : Void;
|
|
function lineStyle(?thickness : Float, color : UInt = 0, alpha : Float = 1, pixelHinting : Bool = false, ?scaleMode : LineScaleMode, ?caps : CapsStyle, ?joints : JointStyle, miterLimit : Float = 3) : Void;
|
|
function lineTo(x : Float, y : Float) : Void;
|
|
function lineTo(x : Float, y : Float) : Void;
|
|
function moveTo(x : Float, y : Float) : Void;
|
|
function moveTo(x : Float, y : Float) : Void;
|