Again the second constructor relies on the first: public Parallelogram( int x, int y, int a, int b, double alpha, double theta ) { // invoke constructor #1: this( x, y, a, b, alpha ); this.rotate( theta ); } |
Once again we defer discussion of rotate(...) |