opengl point size

Started by
1 comment, last by gan 18 years, 9 months ago
Does anyone know how to change the size of points in OpenGL? I'd like to make them show up as circles with radius 3. Mike C. http://www.coolgroups.com/zoomer
Mike C.http://www.coolgroups.com/zoomer/http://www.coolgroups.com/ez/
Advertisement
glPointSize(3.0);
glEnable(GL_POINT_SMOOTH); to make them round.
Here are some description that u might need:
(1)
(2)
(3)

This topic is closed to new replies.

Advertisement