GraphicsPathCommand.hx 304 B

12345678910
  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. public static inline var WIDE_LINE_TO = 5;
  7. public static inline var WIDE_MOVE_TO = 4;
  8. public static inline var NO_OP = 0;
  9. }