/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package armyc2.c2sd.graphics2d;
/**
*
* @author Michael Deutch
*/
public interface IPathIterator {
public static final int SEG_CLOSE = 4;
public static final int SEG_CUBICTO = 3;
public static final int SEG_LINETO = 1;
public static final int SEG_MOVETO = 0;
public static final int SEG_QUADTO = 2;
public static final int WIND_EVEN_ODD = 0;
public static final int WIND_NON_ZERO = 1;
//methods
public int currentSegment(double[]coords);
public int currentSegment(float[] coords);
public int getWindingRule();
public boolean isDone();
public void next();
}