Fix error in contains_point() port

This commit is contained in:
Alessandro Ranellucci 2013-11-21 18:42:16 +01:00
parent 3aef663f7f
commit 5f2b2c90b6
2 changed files with 4 additions and 4 deletions

View file

@ -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++) {