GraphicsGradientFill.hx 621 B

12345678910111213
  1. package flash.display;
  2. @:final extern class GraphicsGradientFill implements IGraphicsData implements IGraphicsFill {
  3. var alphas : Array<Float>;
  4. var colors : Array<UInt>;
  5. var focalPointRatio : Float;
  6. var interpolationMethod : InterpolationMethod;
  7. var matrix : flash.geom.Matrix;
  8. var ratios : Array<Float>;
  9. var spreadMethod : SpreadMethod;
  10. var type : GradientType;
  11. function new(?type : GradientType, ?colors : Array<UInt>, ?alphas : Array<Float>, ?ratios : Array<Float>, ?matrix : flash.geom.Matrix, ?spreadMethod : SpreadMethod, ?interpolationMethod : InterpolationMethod, focalPointRatio : Float = 0) : Void;
  12. }