mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-09 11:12:21 +00:00
[buffer][fix] remove unintended minus signes uncatched earlier
(they come from a git gui copy/paste) This is quite a difference (in the aimes_test case)
This commit is contained in:
@@ -58,9 +58,9 @@ struct line_line_intersection
|
||||
if (geometry::math::abs(denominator) < limit)
|
||||
{
|
||||
return parallel_continue(get<0>(qj) - get<0>(qi),
|
||||
- get<1>(qj) - get<1>(qi),
|
||||
- get<0>(pj) - get<0>(pi),
|
||||
- get<1>(pj) - get<1>(pi))
|
||||
get<1>(qj) - get<1>(qi),
|
||||
get<0>(pj) - get<0>(pi),
|
||||
get<1>(pj) - get<1>(pi))
|
||||
? strategy::buffer::join_continue
|
||||
: strategy::buffer::join_spike
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user