We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpOpenGL and 3D Libraries › worse antialias on 1.0.6 than 0135, mac os x
Page Index Toggle Pages: 1
worse antialias on 1.0.6 than 0135, mac os x (Read 451 times)
worse antialias on 1.0.6 than 0135, mac os x
Aug 21st, 2009, 9:05am
 
Hi,
I have to keep on using Processing 0135 beta, because versions > 1.0 are doing a very different (and much worse) opengl antialias to me.
Here's an example:
todo.to.it/public/processing_antialias.png
(did not linked it directly because I cannot do that, this is just mi second post :( - just copy it to your browser address bar...)

The code is obviously quite trivial:

Code:

import processing.opengl.*;

void setup() {
 size(320,240,OPENGL);
 hint(ENABLE_OPENGL_4X_SMOOTH);
}

void draw() {
 background(255);
 stroke(0);
 fill(0);
 ellipse(50,50,30,30);
 ellipse(220,160,10,10);
 line(50,50,220,160);
 ellipse(50,180,20,20);
 ellipse(220,60,14,14);
 line(50,180,220,60);
}


I have a MacBook Pro, latest generation, but this problem occurred even on an Intel Mac Mini Core 2 Duo.
Any hints or ideas?

Thank you
Fabio
Page Index Toggle Pages: 1