pg.rotate((float )rollAngle);
pg.strokeWeight(3);
pg.line(-wingLength, 0, wingLength, 0);
pg.line(0, 0, 0, - rudderHeight);
pg.strokeWeight(1);
pg.ellipse(0, 0, fuselageRadius, fuselageRadius);
pg.popMatrix();
// do the 'clipping' (copy the offline graphics port into the applet's graphics port)
pg.endDraw();
applet.image(pg, content.getLeft(), content.getTop());