How can I apply antialiasing to instances of Shape3D in Java?

Posted by Jonathan on Stack Overflow See other posts from Stack Overflow or by Jonathan
Published on 2010-05-04T01:03:48Z Indexed on 2010/05/04 1:08 UTC
Read the original article Hit count: 300

Filed under:
|

How can I apply antialiasing to instances of Shape3D in Java?

I have tried something along these lines:

// enable antialiasing 
Appearance planeApp = new Appearance();
LineAttributes la = new LineAttributes();
la.setLineAntialiasingEnable(true);
planeApp.setLineAttributes(la);

myShape.setAppearance(planeApp);

© Stack Overflow or respective owner

Related posts about antialiasing

Related posts about java