GraphicsStroke.hx 905 B

123456789101112131415161718
  1. package flash.display;
  2. extern final class GraphicsStroke implements IGraphicsData implements IGraphicsStroke {
  3. @:flash.property var caps(get,set) : CapsStyle;
  4. var fill : IGraphicsFill;
  5. @:flash.property var joints(get,set) : JointStyle;
  6. var miterLimit : Float;
  7. var pixelHinting : Bool;
  8. @:flash.property var scaleMode(get,set) : 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. private function get_caps() : CapsStyle;
  12. private function get_joints() : JointStyle;
  13. private function get_scaleMode() : LineScaleMode;
  14. private function set_caps(value : CapsStyle) : CapsStyle;
  15. private function set_joints(value : JointStyle) : JointStyle;
  16. private function set_scaleMode(value : LineScaleMode) : LineScaleMode;
  17. }