vote up 1 vote down star

What is the best way to draw a variable width line without using glLineWidth? Just draw a rectangle? Various parallel lines? None of the above?

flag

71% accept rate

5 Answers

vote up 1 vote down check

Assume your original points are (x1,y1) -> (x2,y2). Use the following points (x1-width/2, y1), (x1+width/2,y1), (x2-width/2, y2), (x2+width/2,y2) to construct a rectangle and then use quads/tris to draw it. This the simple naive way. Note that for large line widths you'll get weird endpoint behavior. What you really want to do then is some smart parallel line calculations (which shouldn't be that bad) using vector math. For some reason dot/cross product and vector projection come to mind.

link|flag
vote up 0 vote down

Thanks for all the answers guys! :D

I was hoping to do some smart parallel line thing, but I guess quads are the best/simple way.

link|flag
vote up 0 vote down

A rectangle (i.e. GL_QUAD or two GL_TRIANGLES) sounds like your best bet by the sounds of it, not sure I can think of any other way.

link|flag
vote up 2 vote down

You can draw two triangles:

// Draws a line between (x1,y1) - (x2,y2) with a start thickness of t1 and
// end thickness t2.
void DrawLine(float x1, float y1, float x2, float y2, float t1, float t2)
{
    float angle = atan2(y2 - y1, x2 - x1);
    float t2sina1 = t1 / 2 * sin(angle);
    float t2cosa1 = t1 / 2 * cos(angle);
    float t2sina2 = t2 / 2 * sin(angle);
    float t2cosa2 = t2 / 2 * cos(angle);

    glBegin(GL_TRIANGLES);
    glVertex2f(x1 + t2sina1, y1 - t2cosa1);
    glVertex2f(x2 + t2sina2, y2 - t2cosa2);
    glVertex2f(x2 - t2sina2, y2 + t2cosa2);
    glVertex2f(x2 - t2sina2, y2 + t2cosa2);
    glVertex2f(x1 - t2sina1, y1 + t2cosa1);
    glVertex2f(x1 + t2sina1, y1 - t2cosa1);
    glEnd();
}
link|flag
This is way too complicated! Too much trigonometry where it's not needed too. – PierreBdR Jun 4 at 9:35
It turned out this is not what the OP wanted (see his answer below). But I'd love to see a simpler algorithm, if you would care to share it. – Ozgur Ozcitak Jun 5 at 23:39
vote up 0 vote down

yes, but I would like some algorithm for creating the variable thickness for use with a bresenham line algorithm.

link|flag
Can you please elaborate? I do not think I fully understand your question or requirements – freespace Sep 19 '08 at 13:34
The bresenham line algorithm is best used just for single pixel width lines otherwise you can end up doing a lot of individual surrounding pixel testing (depending on the width), I think you're better off using a polygon such as quad for a thick line in conjunction with a filling algorithm. – Ross Anderson Sep 19 '08 at 14:57

Your Answer

Get an OpenID
or

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