From Java Academy II:Advanced Java NPAC/ECS Java Academy -- February to April 98. byTom Scavo
The second constructor relies on the first: public Rectangle( int x, int y, int w, int h, double theta ) { // invoke constructor #1: this( x, y, w, h ); this.rotate( theta ); }
The important rotate(...) method will be discussed later