DrawablePolygon Constructor #3
The third constructor is unique to the DrawablePolygon class: public DrawablePolygon( Point[] points, int npoints ) { this(); // invoke constructor #1 for ( int i = 0; i < npoints; i++ ) { this.addPoint( points[i] ); } }
We defer discussion of constructor #4 until later…