\( \newcommand{\E}{\mathrm{E}} \) \( \newcommand{\A}{\mathrm{A}} \) \( \newcommand{\R}{\mathrm{R}} \) \( \newcommand{\N}{\mathrm{N}} \) \( \newcommand{\Q}{\mathrm{Q}} \) \( \newcommand{\Z}{\mathrm{Z}} \) \( \def\ccSum #1#2#3{ \sum_{#1}^{#2}{#3} } \def\ccProd #1#2#3{ \sum_{#1}^{#2}{#3} }\)
CGAL 4.14 - Combinatorial Maps

High-level operations.

#include <CGAL/Combinatorial_map_operations.h>

Functions

template<class CMap >
CMap::Dart_handle CGAL::insert_cell_0_in_cell_1 (CMap &cm, typename CMap::Dart_handle dh)
 
template<class CMap >
CMap::Dart_handle CGAL::insert_cell_0_in_cell_2 (CMap &cm, typename CMap::Dart_handle dh)
 
template<class CMap >
CMap::Dart_handle CGAL::insert_cell_1_in_cell_2 (CMap &cm, typename CMap::Dart_handle dh1, typename CMap::Dart_handle dh2)
 
template<class CMap , class InputIterator >
CMap::Dart_handle CGAL::insert_cell_2_in_cell_3 (CMap &cm, InputIterator afirst, InputIterator alast)
 
template<class CMap >
CMap::Dart_handle CGAL::insert_dangling_cell_1_in_cell_2 (CMap &cm, typename CMap::Dart_handle dh)
 
template<class CMap >
bool CGAL::is_insertable_cell_1_in_cell_2 (const CMap &cm, typename CMap::Dart_const_handle dh1, typename CMap::Dart_const_handle dh2)
 
template<class CMap , class InputIterator >
bool CGAL::is_insertable_cell_2_in_cell_3 (const CMap &cm, InputIterator afirst, InputIterator alast)
 
template<class CMap , unsigned int i>
bool CGAL::is_removable (const CMap &cm, typename CMap::Dart_const_handle dh)
 
template<class CMap , unsigned int i>
CMap::size_type CGAL::remove_cell (CMap &cm, typename CMap::Dart_handle dh)
 

Function Documentation

◆ insert_cell_0_in_cell_1()

template<class CMap >
CMap::Dart_handle CGAL::insert_cell_0_in_cell_1 ( CMap &  cm,
typename CMap::Dart_handle  dh 
)

#include <CGAL/Combinatorial_map_operations.h>

Deprecated:
Inserts a 0-cell in the 1-cell containing dh.

Deprecated. Use cm.insert_cell_0_in_cell_1() instead.

◆ insert_cell_0_in_cell_2()

template<class CMap >
CMap::Dart_handle CGAL::insert_cell_0_in_cell_2 ( CMap &  cm,
typename CMap::Dart_handle  dh 
)

#include <CGAL/Combinatorial_map_operations.h>

Deprecated:
Inserts a 0-cell in the 2-cell containing dh.

Deprecated. Use cm.insert_cell_0_in_cell_2() instead.

◆ insert_cell_1_in_cell_2()

template<class CMap >
CMap::Dart_handle CGAL::insert_cell_1_in_cell_2 ( CMap &  cm,
typename CMap::Dart_handle  dh1,
typename CMap::Dart_handle  dh2 
)

#include <CGAL/Combinatorial_map_operations.h>

Deprecated:
Inserts a 1-cell in the 2-cell containing dh1 and dh2.

Deprecated. Use cm.insert_cell_1_in_cell_2() instead.

◆ insert_cell_2_in_cell_3()

template<class CMap , class InputIterator >
CMap::Dart_handle CGAL::insert_cell_2_in_cell_3 ( CMap &  cm,
InputIterator  afirst,
InputIterator  alast 
)

#include <CGAL/Combinatorial_map_operations.h>

Deprecated:
Inserts a 2-cell along the path of 1-cells containing darts given by the range [afirst,alast).

Deprecated. Use cm.insert_cell_2_in_cell_3() instead.

◆ insert_dangling_cell_1_in_cell_2()

template<class CMap >
CMap::Dart_handle CGAL::insert_dangling_cell_1_in_cell_2 ( CMap &  cm,
typename CMap::Dart_handle  dh 
)

#include <CGAL/Combinatorial_map_operations.h>

Deprecated:
Inserts a 1-cell in a the 2-cell containing dh, the 1-cell being attached only by one of its extremity to the 0-cell containing dh.

Deprecated. Use cm.insert_dangling_cell_1_in_cell_2() instead.

◆ is_insertable_cell_1_in_cell_2()

template<class CMap >
bool CGAL::is_insertable_cell_1_in_cell_2 ( const CMap &  cm,
typename CMap::Dart_const_handle  dh1,
typename CMap::Dart_const_handle  dh2 
)

#include <CGAL/Combinatorial_map_operations.h>

Deprecated:
Returns true iff it is possible to insert a 1-cell in cm between dh1 and dh2.

Deprecated. Use cm.is_insertable_cell_1_in_cell_2() instead.

◆ is_insertable_cell_2_in_cell_3()

template<class CMap , class InputIterator >
bool CGAL::is_insertable_cell_2_in_cell_3 ( const CMap &  cm,
InputIterator  afirst,
InputIterator  alast 
)

#include <CGAL/Combinatorial_map_operations.h>

Deprecated:
Returns true iff it is possible to insert a 2-cell in cm along the path of darts given by the range [afirst,alast).

Deprecated. Use cm.is_insertable_cell_2_in_cell_3() instead.

◆ is_removable()

template<class CMap , unsigned int i>
bool CGAL::is_removable ( const CMap &  cm,
typename CMap::Dart_const_handle  dh 
)

#include <CGAL/Combinatorial_map_operations.h>

Deprecated:
Returns true iff the i-cell containing dh can be removed.

Deprecated. Use cm.is_removable() instead.

◆ remove_cell()

template<class CMap , unsigned int i>
CMap::size_type CGAL::remove_cell ( CMap &  cm,
typename CMap::Dart_handle  dh 
)

#include <CGAL/Combinatorial_map_operations.h>

Deprecated:
Removes the i-cell containing dh.

Deprecated. Use cm.remove_cell() instead.