{
if (this.getAnnotation() == null)
return;
// Get the label's model point from the location iterable.
Vec4 point = this.getLabelPoint(dc);
if (point == null)
return;
// Project the label's model point into screen coordinates, place the annotation at the projected point then
// draw the annotation.
Vec4 screenPoint = dc.getView().project(point);
this.setLabelLocation(dc, screenPoint);
this.getAnnotation().render(dc);
}