home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / awt / geom / PathIterator.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  456 b   |  22 lines

  1. package java.awt.geom;
  2.  
  3. public interface PathIterator {
  4.    int WIND_EVEN_ODD = 0;
  5.    int WIND_NON_ZERO = 1;
  6.    int SEG_MOVETO = 0;
  7.    int SEG_LINETO = 1;
  8.    int SEG_QUADTO = 2;
  9.    int SEG_CUBICTO = 3;
  10.    int SEG_CLOSE = 4;
  11.  
  12.    int getWindingRule();
  13.  
  14.    boolean isDone();
  15.  
  16.    void next();
  17.  
  18.    int currentSegment(float[] var1);
  19.  
  20.    int currentSegment(double[] var1);
  21. }
  22.