1 18 package org.apache.batik.ext.awt.geom; 19 20 import java.awt.geom.PathIterator ; 21 22 35 public interface ExtendedPathIterator { 36 37 42 public static final int SEG_CLOSE = PathIterator.SEG_CLOSE; 43 47 public static final int SEG_MOVETO = PathIterator.SEG_MOVETO; 48 53 public static final int SEG_LINETO = PathIterator.SEG_LINETO; 54 62 public static final int SEG_QUADTO = PathIterator.SEG_QUADTO; 63 72 public static final int SEG_CUBICTO = PathIterator.SEG_CUBICTO; 73 74 81 public static final int SEG_ARCTO = 4321; 82 83 89 public static final int WIND_EVEN_ODD = PathIterator.WIND_EVEN_ODD; 90 98 public static final int WIND_NON_ZERO = PathIterator.WIND_NON_ZERO; 99 100 101 public int currentSegment(double[] coords); 102 public int currentSegment(float[] coords); 103 public int getWindingRule(); 104 public boolean isDone(); 105 public void next(); 106 } 107 108 | Popular Tags |