}
private void createRenderables(DrawContext dc)
{
ArrayList<LatLon> positions = computePlaneShape(dc, this.width, this.length);
this.planeModel = new Polyline(positions, this.position.getElevation());
this.planeModel.setPathType(Polyline.LINEAR);
this.planeModel.setFollowTerrain(false);
this.planeModel.setNumSubsegments(1);
this.planeModel.setColor(this.color);
positions = computePlaneShape(dc, this.shadowScale * this.width, this.shadowScale * this.length);
this.shadowModel = new Polyline(positions, this.position.getElevation());
this.shadowModel.setPathType(Polyline.LINEAR);
this.shadowModel.setFollowTerrain(true);
this.shadowModel.setColor(this.shadowColor);
}