>Hi there,
>
>Some hints on the following issue would be very appreciated.
>Any idea about how to set up the :
>javax.media.j3d.Appearance.getRenderingAttributes().setVisible(false)  ?
>
>I have tried something like :
>            RenderingAttributes RenderATT=new RenderingAttributes();
>            RenderATT.setVisible(false);
>
>But I haven't any suspicious how to link this information with my object, that
>is
>something like that:
>            ...
>            Text3D textGeom = new Text3D(font3D, new
>                      String((String)cube.getUserData()));
>            textGeom.setAlignment(Text3D.ALIGN_CENTER);
>            Shape3D textShape = new Shape3D();
>            textShape.setGeometry(textGeom);

Try
        textAppear.setRenderingAttributes(RenderATT);

>            textShape.setAppearance(textAppear);
>            objSpin.addChild(textShape);
>
>

Doug Twilleager
Sun Microsystems

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