mirror of https://github.com/CGAL/cgal
24 lines
496 B
C++
24 lines
496 B
C++
#include <CGAL/Generalized_map.h>
|
|
#include <iostream>
|
|
#include <cstdlib>
|
|
#include <cassert>
|
|
|
|
typedef CGAL::Generalized_map<4> GMap_4;
|
|
typedef GMap_4::Dart_descriptor Dart_descriptor;
|
|
|
|
int main()
|
|
{
|
|
GMap_4 gm;
|
|
Dart_descriptor d1 = gm.make_combinatorial_tetrahedron();
|
|
Dart_descriptor d2 = gm.make_combinatorial_tetrahedron();
|
|
|
|
assert(gm.is_valid());
|
|
|
|
gm.sew<4>(d1,d2);
|
|
|
|
gm.display_characteristics(std::cout);
|
|
std::cout<<", valid="<<gm.is_valid()<<std::endl;
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|