#include <CGAL/Generalized_map.h>
#include <iostream>
#include <cstdlib>
#include <cassert>
typedef GMap_3::Dart_descriptor Dart_descriptor;
typedef GMap_3::size_type size_type;
int main()
{
GMap_3 gm;
size_type amark;
try
{
amark = gm.get_new_mark();
}
catch (GMap_3::Exception_no_more_available_mark)
{
std::cerr<<"No more free mark, exit."<<std::endl;
exit(-1);
}
Dart_descriptor d1 = gm.make_combinatorial_tetrahedron();
Dart_descriptor d2 = gm.make_combinatorial_tetrahedron();
assert( gm.is_valid() );
assert( gm.is_volume_combinatorial_tetrahedron(d1) );
assert( gm.is_volume_combinatorial_tetrahedron(d2) );
gm.sew<3>(d1, d2);
for (GMap_3::Dart_of_cell_range<3>::iterator
it(gm.darts_of_cell<3>(d1).begin()),
itend(gm.darts_of_cell<3>(d1).end()); it!=itend; ++it)
gm.mark(it, amark);
gm.remove_cell<2>(d1);
unsigned int res=0;
for (GMap_3::Dart_range::iterator it(gm.darts().begin()),
itend(gm.darts().end()); it!=itend; ++it)
{
if ( gm.is_marked(it, amark) )
++res;
}
std::cout<<"Number of darts from the first tetrahedron: "<<res<<std::endl;
gm.free_mark(amark);
return EXIT_SUCCESS;
}
The class Generalized_map represents a dD generalized map.
Definition: Generalized_map.h:40