diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-06 23:12:27 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-06 23:12:27 (GMT) |
commit | 8176b06fd05b6f6c800458e3baf326742ff52458 (patch) | |
tree | 9edc3d30e4b8ff9d8aff9b82eae18f7c8c701f60 | |
parent | 23e153f51210fb0ac8dac168515b4186b252a653 (diff) |
bugfix: typo in last commit
-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 ff02359..6faecde 100644 --- a/src/PolySetCGALEvaluator.cc +++ b/src/PolySetCGALEvaluator.cc @@ -29,7 +29,7 @@ PolySet *PolySetCGALEvaluator::evaluatePolySet(const ProjectionNode &node, Abstr else sum += N; } if (sum.empty()) return NULL; - if (sum.dim != 2) { + if (sum.dim != 3) { PRINTF("WARNING: Body of projection() must be a 3D object"); return NULL; } |