Files
processing4/android/examples/Demos/Graphics/Yellowtail/Polygon.pde
2012-09-05 23:50:25 +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];
}
}