Skip to content

Commit

Permalink
Relaxes getNonCollinears check
Browse files Browse the repository at this point in the history
  • Loading branch information
brgix committed Apr 9, 2024
1 parent 97f328e commit f45de6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/osut/utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3099,7 +3099,7 @@ def getNonCollinears(pts = nil, n = 0)
p3 = pts[i3]
v13 = p3 - p1
v12 = p2 - p1
next if v12.cross(v13).length < TOL
next if v12.cross(v13).length < TOL2

a << p2
end
Expand Down

0 comments on commit f45de6a

Please sign in to comment.