Doc-fix: remove the doc of unimplemented constructor

This commit is contained in:
Laurent Rineau 2014-05-14 11:13:35 +02:00
parent 4bcbc85cf5
commit 38c60532e8
1 changed files with 11 additions and 11 deletions

View File

@ -137,18 +137,18 @@ Builds an empty 2D complex embedded in the triangulation `t3`
*/
SurfaceMeshComplex_2InTriangulation_3(Triangulation& t3);
/*!
Builds a 2D complex embedded in the triangulation `t3`,
including in the 2D complex the facets of `t3` for
which the predicate `select` returns `true`.
// /*!
// Builds a 2D complex embedded in the triangulation `t3`,
// including in the 2D complex the facets of `t3` for
// which the predicate `select` returns `true`.
The type `FacetSelector` must be
a function object with an operator to select facets:
`bool operator()(Facet f);`.
*/
template < class FacetSelector>
SurfaceMeshComplex_2InTriangulation_3(Triangulation& t3,
FacetSelector select);
// The type `FacetSelector` must be
// a function object with an operator to select facets:
// `bool operator()(Facet f);`.
// */
// template < class FacetSelector>
// SurfaceMeshComplex_2InTriangulation_3(Triangulation& t3,
// FacetSelector select);
/// @}