1 7 8 package java.awt.geom; 9 10 43 public interface PathIterator { 44 51 public static final int WIND_EVEN_ODD = 0; 52 53 62 public static final int WIND_NON_ZERO = 1; 63 64 68 public static final int SEG_MOVETO = 0; 69 70 75 public static final int SEG_LINETO = 1; 76 77 97 public static final int SEG_QUADTO = 2; 98 99 121 public static final int SEG_CUBICTO = 3; 122 123 128 public static final int SEG_CLOSE = 4; 129 130 137 public int getWindingRule(); 138 139 144 public boolean isDone(); 145 146 151 public void next(); 152 153 174 public int currentSegment(float[] coords); 175 176 197 public int currentSegment(double[] coords); 198 } 199 | Popular Tags |