Hello, I would like to know how AA works on Xith. Because when I activate it it seems that nothing changed.
CanvasConstructionInfo info = new CanvasConstructionInfo();
info.setFSAAMode(FSAA.ON_16X);
canvas = Canvas3DFactory.create(info, parent);
I also tried to change parameters on my lines when I create them
LineAttributes lineAttr = new LineAttributes();
lineAttr.setLineAntialiasingEnabled(antialiasing);
...
Appearance app= new Appearance();
app.setLineAttributes( lineAttr3 );
...
Line line = new Line(...);
line.setAppearance(app);
Nothing changes. I probably forgot to do something, or I am maybe not even doing the right thing to enable AA. I searched on the forum without any results.
Thanks in advance for your help.