GraphicsStroke.hx 498 B

123456789101112
  1. package flash.display;
  2. @:final extern class GraphicsStroke implements IGraphicsData, implements IGraphicsStroke {
  3. var caps : CapsStyle;
  4. var fill : IGraphicsFill;
  5. var joints : JointStyle;
  6. var miterLimit : Float;
  7. var pixelHinting : Bool;
  8. var scaleMode : LineScaleMode;
  9. var thickness : Float;
  10. function new(thickness : Float = 0./*NaN*/, pixelHinting : Bool = false, ?scaleMode : LineScaleMode, ?caps : CapsStyle, ?joints : JointStyle, miterLimit : Float = 3, ?fill : IGraphicsFill) : Void;
  11. }