mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 05:39:18 +01:00
13 lines
179 B
Plaintext
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];
|
|
}
|
|
}
|
|
|