Loading...
Logo
Processing Forum

Improving OpenGL line quality?

in General Discussion  •  Other  •  1 year ago  
Hi,

I'm developing a simple application that currently just displays a set of vector points as a 3D shape. This was working well using P3D to render the canvas. 

The problem is that I have added the controlP5 library to my sketch and that doesn't work well with P3D, so I switched to OPENGL, but this has the effect of making the lines look terrible, as shown in the example image below:


I've tried using h int(DISABLE_OPENGL_2X_SMOOTH); to no effect and have also tried disabling  GL_LINE_SMOOTH, but nothing seems to change the quality of the line when I use OpenGL.

I really want to have the crisp aliased lines from P3D, is there any way to do this with OpenGL?

Thanks.

Replies(1)

Hi, P3D in the latest alphas of the 2.0 branch (2.0a5 right now) is OpenGL based and if you disable smooth then lines should be aliased, for example:
Copy code
  1. void setup() {
  2.   size(400, 400, P3D);
  3.   noSmooth();  
  4. }

  5. void draw() {
  6.   background(255);
  7.   line(0, 0, mouseX, mouseY); 
  8. }