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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1979-12-31
|
456 b
|
22 lines
package java.awt.geom;
public interface PathIterator {
int WIND_EVEN_ODD = 0;
int WIND_NON_ZERO = 1;
int SEG_MOVETO = 0;
int SEG_LINETO = 1;
int SEG_QUADTO = 2;
int SEG_CUBICTO = 3;
int SEG_CLOSE = 4;
int getWindingRule();
boolean isDone();
void next();
int currentSegment(float[] var1);
int currentSegment(double[] var1);
}