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 & HelpPrograms › OPENGL and points: why can't  I draw any
Page Index Toggle Pages: 1
OPENGL and points: why can't  I draw any? (Read 450 times)
OPENGL and points: why can't  I draw any?
Jul 31st, 2008, 7:13pm
 
Hey up

I must be missing something very obvious, but points that I can draw in P3D don't appear in OPENGL. Neither do they if I use vertex in beginShape(POINT). Triangles and other shapes DO appear in OPENGL - but is it not possible to draw points?

Dan
Re: OPENGL and points: why can't  I draw any?
Reply #1 - Aug 1st, 2008, 4:20am
 
Some graphics cards just have problems with drawing points the way we have them set up:
http://dev.processing.org/bugs/show_bug.cgi?id=121

I'm working to make it more consistent for 1.0, however.
Re: OPENGL and points: why can't  I draw any?
Reply #2 - Sep 8th, 2008, 8:50am
 
I had a similar problem: no way points can go to opengl.
so I replace them with ellipses, it looks similar.
ellipse(x,y,r1,r2); // to get a point r1=r2
Page Index Toggle Pages: 1