diff options
author | Marius Kintel <marius@kintel.net> | 2012-02-14 23:53:13 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-02-14 23:53:13 (GMT) |
commit | 68a10954cf09104d4b0097b9a62ae30cd316a5c6 (patch) | |
tree | 1751423f8f8c013ebb759f927c0318f82a2427a4 /src/PolySetCGALEvaluator.cc | |
parent | 25f6593484951c32aaaf79da89d0b3acf352b0fe (diff) | |
parent | a9e79409436d9037227dd73571b026c7ff0d4f62 (diff) |
Merge branch 'clothbot-master'
Diffstat (limited to 'src/PolySetCGALEvaluator.cc')
-rw-r--r-- | src/PolySetCGALEvaluator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PolySetCGALEvaluator.cc b/src/PolySetCGALEvaluator.cc index c1bdea4..81ae31e 100644 --- a/src/PolySetCGALEvaluator.cc +++ b/src/PolySetCGALEvaluator.cc @@ -108,7 +108,7 @@ PolySet *PolySetCGALEvaluator::evaluatePolySet(const ProjectionNode &node) // in the XY plane, causing the resulting 2D polygon to be self-intersection // and cause a crash in CGALEvaluator::PolyReducer. The right solution is to // filter these polygons here. kintel 20120203. - Grid2d<int> conversion_grid(GRID_COARSE); + Grid2d<unsigned int> conversion_grid(GRID_COARSE); for (size_t i = 0; i < ps3->polygons.size(); i++) { for (size_t j = 0; j < ps3->polygons[i].size(); j++) { double x = ps3->polygons[i][j][0]; |