diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-07-20 07:00:14 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-07-20 07:00:14 (GMT) |
commit | 8e9b2d2c491ccafd5cb14919f750aa537ebdcc04 (patch) | |
tree | 27f1d90704e74e28c14855b8e1f1824e7255492c /src/CGAL_Nef_polyhedron.h | |
parent | f0215e86c8baa1a45af9c2c9828398d29e425beb (diff) |
fix typo
Diffstat (limited to 'src/CGAL_Nef_polyhedron.h')
-rw-r--r-- | src/CGAL_Nef_polyhedron.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CGAL_Nef_polyhedron.h b/src/CGAL_Nef_polyhedron.h index 64ee9eb..694b420 100644 --- a/src/CGAL_Nef_polyhedron.h +++ b/src/CGAL_Nef_polyhedron.h @@ -14,7 +14,7 @@ public: ~CGAL_Nef_polyhedron() {} bool empty() const { return (dim == 0 || (!p2 && !p3)); } - void reset() { dim=0; p2.rest(); p3.reset(); } + void reset() { dim=0; p2.reset(); p3.reset(); } CGAL_Nef_polyhedron &operator+=(const CGAL_Nef_polyhedron &other); CGAL_Nef_polyhedron &operator*=(const CGAL_Nef_polyhedron &other); CGAL_Nef_polyhedron &operator-=(const CGAL_Nef_polyhedron &other); |