mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 17:58:03 -06:00
Fix error in contains_point() port
This commit is contained in:
parent
3aef663f7f
commit
5f2b2c90b6
2 changed files with 4 additions and 4 deletions
|
@ -114,7 +114,7 @@ bool
|
|||
Polygon::contains_point(const Point* point) const
|
||||
{
|
||||
// http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html
|
||||
bool result;
|
||||
bool result = false;
|
||||
Points::const_iterator i = this->points.begin();
|
||||
Points::const_iterator j = this->points.end() - 1;
|
||||
for (; i != this->points.end(); j = i++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue