/**
  * Render the polygon.
  *
  * @param dc Current draw context.
  */
 protected void doRenderGraphic(DrawContext dc) {
   for (SurfaceCircle ring : this.rings) {
     ring.render(dc);
   }
 }