Files
processing4/android/examples/OpenGL/Animation/Yellowtail/Polygon.pde
2012-02-12 21:33:18 +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];
}
}