public int npoints;
/**
* The array of [i]x[/i] coordinates. The number of elements in
* this array might be more than the number of [i]x[/i] coordinates
* in this <code>Polygon</code>. The extra elements allow new points
* to be added to this <code>Polygon</code> without re-creating this
* array. The value of {@link #npoints npoints} is equal to the
* number of valid points in this <code>Polygon</code>.
*
* @serial
* @see #addPoint(int, int)
*/
public int xpoints[];
/**
* The array of [i]y[/i] coordinates. The number of elements in
* this array might be more than the number of [i]y[/i] coordinates
* in this <code>Polygon</code>. The extra elements allow new points
* to be added to this <code>Polygon</code> without re-creating this
* array. The value of <code>npoints</code> is equal to the
* number of valid points in this <code>Polygon</code>.
*
* @serial
* @see #addPoint(int, int)
*/
public int ypoints[];