diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-03-11 18:30:40 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-03-11 18:30:40 (GMT) |
commit | 1726c26518cdc03cc1aff0438ccf4cdc93806eca (patch) | |
tree | 6c6f05b0cfa0a8bc4d2bfebcfdbe4c66e80b3181 /src/CGALEvaluator.cc | |
parent | 6d3089032ce12b09c2987d7f39b031cbe1a5db2b (diff) |
fix bug
Diffstat (limited to 'src/CGALEvaluator.cc')
-rw-r--r-- | src/CGALEvaluator.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/CGALEvaluator.cc b/src/CGALEvaluator.cc index b8ed0fc..8e72fff 100644 --- a/src/CGALEvaluator.cc +++ b/src/CGALEvaluator.cc @@ -224,7 +224,10 @@ CGAL_Nef_polyhedron CGALEvaluator::applyResize(const CgaladvNode &node) PRINT("WARNING: Cannot resize to a new size less than 0."); return N; } - std::cout << autoscale << " ascale \n"; + std::cout << autoscale << " autoscale\n"; + std::cout << node.autosize[0] << ","; + std::cout << node.autosize[1] << ","; + std::cout << node.autosize[2] << " node autosize \n"; std::cout << scale[0] << ","; std::cout << scale[1] << ","; std::cout << scale[2] << " scalev \n"; |