|
|
|
|
|
by Taterr
524 days ago
|
|
Funny timing on this post, I just finished implementing this a couple days ago for a little effect in a game. I followed the math in this comment that is now only viewable from the archive http://web.archive.org/web/20190614093605/https://forum.libc... I notice you use 4 triangles per segment but I believe it's always possible to use only 2 if you only have miter and bevel caps. |
|
But it is actually way more complicated than that in the general case. Notice how there is some overlap, not very pretty with transparency. There are ways around this problem, for example using a stencil buffer, but if you don't want that either and instead go a proper triangulation, this becomes quite involved.
The problem is when segments are shorter than the inner intersection point. In the example in the article, that's when I1 is outside of [A1, A1'] or [B1, B1']. Doing it properly would require taking the geometry of the entire figure into account, you can't just draw it segment by segment and fix the joints.
For example, if you draw a closed polygon that is smaller than the line thickness, all internal geometry will disappear so you have to triangulate the shape using only the outer vertices. How to calculate that looks like an interesting problem that would need a much longer blog post...