mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-13 19:24:20 +02:00
Merge pull request #579 from revarbat/revarbat_dev
Bugfix for path_self_intersections() with closed paths.
This commit is contained in:
@@ -682,6 +682,7 @@ function path_self_intersections(path, closed=true, eps=EPSILON) =
|
||||
u = ((e.x*c.y)-(e.y*c.x)) / denom
|
||||
) [a1+t*(a2-a1), t, u]
|
||||
) if (
|
||||
(!closed || i!=0 || j!=plen-1) &&
|
||||
isect != undef &&
|
||||
isect[1]>=-eps && isect[1]<=1+eps &&
|
||||
isect[2]>=-eps && isect[2]<=1+eps
|
||||
|
Reference in New Issue
Block a user