Add CGAL namespace in example.

This commit is contained in:
Guillaume Damiand 2012-10-18 19:37:39 +00:00
parent 81c8c662d6
commit 145e411fae
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ int main()
}
// 2) Create two tetrahedra.
Dart_handle dh1 = make_combinatorial_tetrahedron(cm);
Dart_handle dh2 = make_combinatorial_tetrahedron(cm);
Dart_handle dh1 = CGAL::make_combinatorial_tetrahedron(cm);
Dart_handle dh2 = CGAL::make_combinatorial_tetrahedron(cm);
// 3) 3-sew them.
cm.sew<3>(dh1, dh2);