diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2011-10-16 16:52:13 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2011-10-16 16:52:13 (GMT) |
commit | c0592dc3b833a91457e28a6d80bcc58c1bb7938d (patch) | |
tree | 2aac2852de4037f6cd14d131d7c28e4c6cc66a20 /tests/cgalpngtest.cc | |
parent | de53382a3d1a7f47684cdda7c27d976c2e234ce9 (diff) |
fix small bugs 1. error reporting 2. fbo teardown
Diffstat (limited to 'tests/cgalpngtest.cc')
-rw-r--r-- | tests/cgalpngtest.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/cgalpngtest.cc b/tests/cgalpngtest.cc index 41e7eaf..734f6eb 100644 --- a/tests/cgalpngtest.cc +++ b/tests/cgalpngtest.cc @@ -223,7 +223,7 @@ int main(int argc, char **argv) if (cgalRenderer.polyhedron) { CGAL::Bbox_3 cgalbbox = cgalRenderer.polyhedron->bbox(); bbox = BoundingBox(Vector3d(cgalbbox.xmin(), cgalbbox.ymin(), cgalbbox.zmin()), - Vector3d(cgalbbox.xmax(), cgalbbox.ymax(), cgalbbox.zmax())); + Vector3d(cgalbbox.xmax(), cgalbbox.ymax(), cgalbbox.zmax())); } else if (cgalRenderer.polyset) { bbox = cgalRenderer.polyset->getBoundingBox(); @@ -246,4 +246,3 @@ int main(int argc, char **argv) return 0; } - |