But now when the box shape is set to zero transparency the other shapes are bleeding through and showing

Help!

Here's my appearance init for the box shape:
1 2 3 4 5 6 7 8 9 10
| appearance.setPolygonAttributes(new PolygonAttributes(polygonFill, PolygonAttributes.CULL_NONE, 0)); appearance.setColoringAttributes( new ColoringAttributes(color, ColoringAttributes.NICEST)); appearance.setTransparencyAttributes(new TransparencyAttributes( TransparencyAttributes.BLENDED, opacity));
RenderingAttributes ra = new RenderingAttributes(); ra.setDepthBufferEnable(false); appearance.setRenderingAttributes(ra); |