Files
processing4/android/examples/OpenGL/Animation/Yellowtail/Polygon.pde
2012-05-09 23:58:30 +00:00

13 lines
179 B
Plaintext

public class Polygon {
int npoints;
int[] xpoints;
int[] ypoints;
public Polygon(int n) {
npoints = n;
xpoints = new int[n];
ypoints = new int[n];
}
}