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?
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
|||
|
|
|
|
You can draw two triangles:
|
||||
|
|
|
yes, but I would like some algorithm for creating the variable thickness for use with a bresenham line algorithm. |
||||
|
