polyAttr.setPolygonMode(PolygonAttributes.POLYGON_FILL);
appear.setPolygonAttributes(polyAttr);
final Color3f orange = new Color3f(1f, 0.5f, 0f);
final ColoringAttributes colorAttr = new ColoringAttributes();
colorAttr.setColor(orange);
colorAttr.setShadeModel(ColoringAttributes.NICEST);
appear.setColoringAttributes(colorAttr);
final Material material = new Material();
material.setAmbientColor(orange);
material.setDiffuseColor(orange);
material.setSpecularColor(orange);
material.setEmissiveColor(orange);
appear.setMaterial(material);
final Box box = new Box();
box.setAppearance(appear);
final Appearance appear2 = new Appearance();
final PointAttributes pointAttr2 = new PointAttributes();
pointAttr2.setPointAntialiasingEnable(true);
appear2.setPointAttributes(pointAttr2);
final LineAttributes lineAttr2 = new LineAttributes();
lineAttr2.setLineAntialiasingEnable(true);
appear2.setLineAttributes(lineAttr2);
final PolygonAttributes polyAttr2 = new PolygonAttributes();
polyAttr2.setPolygonMode(PolygonAttributes.POLYGON_LINE);
appear2.setPolygonAttributes(polyAttr2);
final ColoringAttributes colorAttr2 = new ColoringAttributes();
colorAttr2.setColor(new Color3f(1f, 0.5f, 0f));
colorAttr2.setShadeModel(ColoringAttributes.NICEST);
appear2.setColoringAttributes(colorAttr2);
appear2.setMaterial(material);
final Box box2 = new Box();