mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-08 23:02:09 +00:00
Merge pull request #72 from mkaravel/fix/graham_andrew
[strategies][agnostic] fix bug in Graham-Andrew strategy:
This commit is contained in:
@@ -323,7 +323,7 @@ private:
|
||||
while (output_size >= 3)
|
||||
{
|
||||
rev_iterator rit = output.rbegin();
|
||||
point_type const& last = *rit++;
|
||||
point_type const last = *rit++;
|
||||
point_type const& last2 = *rit++;
|
||||
|
||||
if (Factor * side::apply(*rit, last, last2) <= 0)
|
||||
|
||||
Reference in New Issue
Block a user