vote up 1 vote down star

I'm trying to a draw a more-or-less smooth multi-segment line in OpenGL. However I find that if the line is over a thickness about 3 then the joins between the segments are not seamless. They sometimes have gaps between them. Is there a good way of making these joins smooth and gapless? I'm looking for something like the equivalent of BasicStroke.JOIN_MITER in Java.

flag

80% accept rate
If this is really JOGL, adding the java tag is relevant and likely to get you a lot more views. – mmyers May 7 at 21:09
could u add a screenshot? – Daniel Kindler May 7 at 21:13
I don't have a place to post an image to right now. – DJClayworth May 7 at 21:27
We had the same issue. Eventually we just drew thin polygons and drew a circle with the correct radius on top of them. I'd love to know if there is an actual answer to this question. – Andrei Krotkov May 7 at 22:03

5 Answers

vote up 2 vote down check

The most consistent and portable way to draw think lines using OpenGL is to use camera aligned (otherwise know as billboarded) polygons. Different implementations of the OpenGL API handle the end points of the lines differently and GL_LINE_SMOOTH produces drastically different results depending on the platform. Some implementations consider lines of thickness greater then 1 to be ill-defined. As stated in the glLineWidth manpages: [For anti-aliased lines] only width 1 is guaranteed to be supported; others depend on the implementation.

That being said, I have used a simple 2 pass hack to address this very problem.

  1. Disable writing to the depth buffer glDepthMask(GL_FALSE)
  2. Draw smoothed lines of desired thickness
  3. Draw smoothed points at the endpoints of all the lines that are the same size at the lines. (this step may not be needed to fill the gap, however it should round out the points where the lines meet and make everything look a little smoother)
  4. Re-enable the depth buffer for writing glDepthMask(GL_TRUE)

You may also want to play around with the depth buffer settings. The "gap" between the lines may be due to the 2nd line failing a depth test on pixels that have been alpha blended with the background.

link|flag
On some renderers thick lines are drawn by extending the line in one direction only. In that case the points are not drawn in the centre of the line. It seems OpenGL really doesn't handle this very well. I think polygons are going to end up being the best way. – DJClayworth May 11 at 16:00
vote up 1 vote down

Depending of the quality of the OpenGL implementation, the results may vary. I've noticed a lot of differences for smooth lines on different implementations.

You may want to use a different strategy to draw your line segments, such as using thin polygons.

link|flag
Thin polygons seems attractive, but I also need to be able to use antialiasing and stipples. – DJClayworth May 7 at 21:21
It's possible to antialias polygons, and glPolygonStipple does exist. – Andrei Krotkov May 7 at 22:46
I didn't know that. It might be helpful. – DJClayworth May 8 at 13:27
It turns out polygon stipple isn't quite the same as line stipple. I think I'm going to have to go with polygons for solid lines and use the renderers own line drawing for stippled lines, where the defects are not quite so obvious. – DJClayworth May 11 at 16:02
vote up 1 vote down

Enabling anti-aliasing with GL_LINE_SMOOTH changes the way lines are drawn slightly. You may try that. Also note that blending will need to be enabled for that to work.

The main thing is that you're not going to be able to control every aspect of how lines are drawn using thin rectangles might work better, and after you write your own DrawThickLine function it won't be any more work...

link|flag
I already tried GL_LINE_SMOOTH, and it gives different, but not unfortunately better, results. – DJClayworth May 7 at 21:20
Another thought -- Can you just plot GL_POINTS and GL_LINES? The points should cover up any spacing problem you have, and if you used GL_POINT_SMOOTH, they are rendered as round circles instead of boxes. – JPhi1618 May 8 at 0:14
Another good idea, but it turns out that some renderers make a line thicker by extending it only on one side. The points are not centered on the line when both are thick. – DJClayworth May 8 at 13:20
Wow, I have not ran into that, but I'll take your work for it. Seems like a dumb way to make a line thick... Thumbs down for that idea. – JPhi1618 May 8 at 13:49
vote up 0 vote down

overdraw the lines by half the thickness on each end. That should remove the 'gaps' although it'll give a sharper line join rather than a smoother one.

link|flag
vote up 0 vote down

To get something smooth you may want to resort to Bezier curves or some other form of splines. I'm surprised this isn't built into OpenGL, but the web site has an example program to generate Bezier curves using OpenGL.

link|flag
The problem here is not the curviness of the lines, but that the ends of the segments don't match up against each other, even if they are supposed to be straight segments. The program still ends up sending line segments to OpenGL and we are back where we started. – DJClayworth May 8 at 13:26
Bletch. I'm tempted to downvote my own answer (losing 3 reputation)... – Norman Ramsey May 8 at 20:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.