summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-09-29 17:53:34 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-09-29 17:53:34 +0200
commitdab93ead76f1435f6b74937ef0377aafb0517439 (patch)
tree047ae51a14f758afa41de83be15b3186c8b9424f
parent44473bcd93892c7034fa21599509d4271f2d8bb2 (diff)
doc review: Modify ctor with points and weights documentation
-rw-r--r--src/Alpha_complex/include/gudhi/Alpha_complex.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Alpha_complex/include/gudhi/Alpha_complex.h b/src/Alpha_complex/include/gudhi/Alpha_complex.h
index 38201027..a692dbc6 100644
--- a/src/Alpha_complex/include/gudhi/Alpha_complex.h
+++ b/src/Alpha_complex/include/gudhi/Alpha_complex.h
@@ -176,8 +176,8 @@ class Alpha_complex {
*
* @param[in] points Range of points to triangulate. Points must be in Kernel::Point_d or Kernel::Weighted_point_d.
*
- * The type InputPointRange must be a range for which std::begin and
- * std::end return input iterators on a Kernel::Point_d or Kernel::Weighted_point_d.
+ * The type InputPointRange must be a range for which std::begin and std::end return input iterators on a
+ * Kernel::Point_d or Kernel::Weighted_point_d.
*/
template<typename InputPointRange >
Alpha_complex(const InputPointRange& points)
@@ -190,12 +190,12 @@ class Alpha_complex {
* The vertices may be not contiguous as some points may be discarded in the triangulation (duplicate points,
* weighted hidden point, ...).
*
- * @param[in] points Range of points to triangulate. Points must be in Kernel::Point_d or Kernel::Weighted_point_d.
+ * @param[in] points Range of points to triangulate. Points must be in Kernel::Point_d.
*
* @param[in] weights Range of points weights. Weights must be in Kernel::FT.
*
- * The type InputPointRange must be a range for which std::begin and
- * std::end return input iterators on a Kernel::Point_d.
+ * The type InputPointRange must be a range for which std::begin and std::end return input iterators on a
+ * Kernel::Point_d.
*/
template <typename InputPointRange, typename WeightRange>
Alpha_complex(const InputPointRange& points, WeightRange weights) {