Hello All, Today i faced a strange problem : using the code at the end of this mail i want to display the wireframe of objects. When the objects are first displayed only one triangle of each object is shown. as soon as i move *one* of the objects a little bit, the wireframe of *all* objects are displayed properly. Does anybody have a solution how to display the wreframes of objects instantly ? Best regards, Uwe mailto:[EMAIL PROTECTED] // Set up the coloring properties Color3f objColor = new Color3f(0.9f, 0.9f, 0.9f); ColoringAttributes ca = new ColoringAttributes(); ca.setColor(objColor); app.setColoringAttributes(ca); // Set up the polygon attributes PolygonAttributes pa = new PolygonAttributes(); pa.setPolygonMode(pa.POLYGON_LINE); pa.setCullFace(pa.CULL_FRONT); app.setPolygonAttributes(pa); shape.setAppearance(app); =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".