GraphicsPathCommand.hx 369 B

1234567891011
  1. package flash.display;
  2. extern class GraphicsPathCommand {
  3. public static inline var LINE_TO = 2;
  4. public static inline var MOVE_TO = 1;
  5. public static inline var CURVE_TO = 3;
  6. @:require(flash11) public static inline var CUBIC_CURVE_TO = 6;
  7. public static inline var WIDE_LINE_TO = 5;
  8. public static inline var WIDE_MOVE_TO = 4;
  9. public static inline var NO_OP = 0;
  10. }