GraphicsGradientFill.hx 607 B

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