net.sourceforge.plantuml.klimt.geom.PathIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.klimt.geom;
public class PathIterator {
public static final int WIND_EVEN_ODD = java.awt.geom.PathIterator.WIND_EVEN_ODD;
public static final int WIND_NON_ZERO = java.awt.geom.PathIterator.WIND_NON_ZERO;
public static final int SEG_MOVETO = java.awt.geom.PathIterator.SEG_MOVETO;
public static final int SEG_LINETO = java.awt.geom.PathIterator.SEG_LINETO;
public static final int SEG_CUBICTO = java.awt.geom.PathIterator.SEG_CUBICTO;
public static final int SEG_QUADTO = java.awt.geom.PathIterator.SEG_QUADTO;
public static final int SEG_CLOSE = java.awt.geom.PathIterator.SEG_CLOSE;
public boolean isDone() {
throw new UnsupportedOperationException();
}
public void next() {
throw new UnsupportedOperationException();
}
public int getWindingRule() {
throw new UnsupportedOperationException();
}
public int currentSegment(double[] coord) {
throw new UnsupportedOperationException();
}
}