GraphicsStroke.hx 476 B

123456789101112
  1. package flash.display;
  2. extern class GraphicsStroke implements IGraphicsStroke, implements IGraphicsData {
  3. function new(?_thickness : Float, ?_pixelHinting : Bool, ?_scaleMode : String, ?_caps : String, ?_joints : String, ?_miterLimit : Float, ?_fill : flash.display.IGraphicsFill) : Void;
  4. var caps : String;
  5. var fill : flash.display.IGraphicsFill;
  6. var joints : String;
  7. var miterLimit : Float;
  8. var pixelHinting : Bool;
  9. var scaleMode : String;
  10. var thickness : Float;
  11. }