mirror of https://github.com/CGAL/cgal
fix GeomTraits requirements
This commit is contained in:
parent
3e016af3b5
commit
679cb1e1fa
|
|
@ -50,7 +50,7 @@ Here is the list of the named parameters available in this package:
|
|||
\cgalNPTableBegin
|
||||
|
||||
\cgalNPBegin{geom_traits} \anchor VSA_geom_traits
|
||||
the geometric traits instance in which the mesh processing operation should be performed.\n
|
||||
the geometric traits instance in which the mesh approximation operation should be performed.\n
|
||||
\b Type: a Geometric traits class.\n
|
||||
\b Default type is
|
||||
\code
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ namespace VSA {
|
|||
/// @tparam TriangleMesh a triangle `FaceListGraph`
|
||||
/// @tparam VertexPointMap a property map with `boost::graph_traits<TriangleMesh>::%vertex_descriptor`
|
||||
/// as key type, GeomTraits::Point_3 as value type
|
||||
/// @tparam GeomTraits geometric traits
|
||||
/// @tparam GeomTraits model of \cgal Kernel
|
||||
template <typename TriangleMesh,
|
||||
typename VertexPointMap
|
||||
= typename boost::property_map<TriangleMesh, boost::vertex_point_t>::type,
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ namespace VSA {
|
|||
/// @tparam TriangleMesh a triangle `FaceListGraph`
|
||||
/// @tparam VertexPointMap a property map with `boost::graph_traits<TriangleMesh>::%vertex_descriptor`
|
||||
/// as key type, GeomTraits::Point_3 as value type
|
||||
/// @tparam GeomTraits geometric traits
|
||||
/// @tparam GeomTraits model of \cgal Kernel
|
||||
template <typename TriangleMesh,
|
||||
typename VertexPointMap
|
||||
= typename boost::property_map<TriangleMesh, boost::vertex_point_t>::type,
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ enum Approximation_seeding_tag {
|
|||
/// @tparam TriangleMesh CGAL TriangleMesh
|
||||
/// @tparam VertexPointMap vertex point map
|
||||
/// @tparam ErrorMetricProxy approximation metric type
|
||||
/// @tparam GeomTraits geometric traits type
|
||||
/// @tparam GeomTraits model of \cgal Kernel
|
||||
/// @tparam Concurrency_tag concurrency tag
|
||||
template <typename TriangleMesh,
|
||||
typename VertexPointMap,
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ unspecified_type all_default();
|
|||
* @return `true` if the indexed triangles represent a 2-manifold, oriented surface mesh, and `false` otherwise.
|
||||
*
|
||||
* \cgalNamedParamsBegin
|
||||
* \cgalParamBegin{geom_traits} a geometric traits class instance, model of `Kernel`.
|
||||
* \cgalParamBegin{geom_traits} a geometric traits class instance, model of \cgal Kernel.
|
||||
* Exact constructions kernels are not supported by this function.
|
||||
* \cgalParamEnd
|
||||
* \cgalParamBegin{vertex_point_map} the property map with the points associated
|
||||
|
|
|
|||
Loading…
Reference in New Issue