add a typedef

This commit is contained in:
Jane Tournois 2014-12-04 15:27:53 +01:00 committed by Sébastien Loriot
parent 717e795c1a
commit 7886aca9e4
1 changed files with 9 additions and 1 deletions

View File

@ -21,7 +21,14 @@ meshing domain or not.
class DelaunayMeshFaceBase_2 {
public:
/// \name Access Functions
/// \name Typedef
/// @{
/*! A typedef to describe an edge
*/
typedef std::pair<DelaunayMeshFaceBase_2, int> Edge;
/// @}
/// \name Functions
/// @{
/*!
@ -54,6 +61,7 @@ its circumcenter.
Edge blinding_constraint() const;
/*!
sets the edge that makes this face blind.
\pre is_blind() returns true
\pre e is a constrained edge
*/