Well,

finally I found the solutions to my questions. I write them here, because they can be 
useful for somebody.

Oh, in fact was Java3D 1.1.3 (Danke Tammo).

1.- setAppearance does not work like before. Now it is necessary to set
the capabilities of the object, shape on shape separately. For example,
a cylinder:

        aux = p.getShape(p.BODY);
        aux.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
        aux.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
        aux = p.getShape(p.TOP);
        aux.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
        aux.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
        aux = p.getShape(p.BOTTOM);
        aux.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
        aux.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);

2.- It is necessary to set FrontClipDistance closer:

        c.getView().setFrontClipDistance(0.001f);

===========================================================================
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".

Reply via email to