From 2fd75467782e273edc74f883341e11636318ef49 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 31 Oct 2018 14:09:06 +0100 Subject: [PATCH] polish --- .../doc/Heat_method_3/Concepts/HeatMethodTraits_3.h | 8 ++++---- .../Heat_method_3/Surface_mesh_geodesic_distances_3.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Heat_method_3/doc/Heat_method_3/Concepts/HeatMethodTraits_3.h b/Heat_method_3/doc/Heat_method_3/Concepts/HeatMethodTraits_3.h index fcb821be832..8a110bc2caf 100644 --- a/Heat_method_3/doc/Heat_method_3/Concepts/HeatMethodTraits_3.h +++ b/Heat_method_3/doc/Heat_method_3/Concepts/HeatMethodTraits_3.h @@ -21,7 +21,7 @@ public: // The number type. It must be `CopyConstructible` and `DefaultConstructible`, // and be constructible from `double`. - typdef unspecified_type FT; + typedef unspecified_type FT; /// The 3D point type. It must be `CopyConstructible` and `DefaultConstructible`, /// and have a constructor with three parameters of a type constructibe from `double`. @@ -43,10 +43,10 @@ public: /// Functor with operator: `Vector_3 operator()(Vector_3 v, Vector_3 w) const`. typedef unspecified_type Construct_cross_product_vector_3; - /// Functor with operator: `double operator()(Vector_3 v, Vector_3 w) const`. + /// Functor with operator: `FT operator()(Vector_3 v, Vector_3 w) const`. typedef unspecified_type Compute_scalar_product_3; - /// Functor with operator: `double operator()(Point_3 p, Point_3 q) const`. + /// Functor with operator: `FT operator()(Point_3 p, Point_3 q) const`. typedef unspecified_type Compute_squared_distance_3; @@ -55,7 +55,7 @@ public: /*! \name Operations For each of the above function object types, `Func_obj_type`, a function must exist with the name -`func_obj_type_object` that creates an instance of the function or +`func_obj_type_object` that creates an instance of the function or predicate object type. For example: */ /// @{ diff --git a/Heat_method_3/include/CGAL/Heat_method_3/Surface_mesh_geodesic_distances_3.h b/Heat_method_3/include/CGAL/Heat_method_3/Surface_mesh_geodesic_distances_3.h index 9e5eafb2b14..94d77ee03d3 100644 --- a/Heat_method_3/include/CGAL/Heat_method_3/Surface_mesh_geodesic_distances_3.h +++ b/Heat_method_3/include/CGAL/Heat_method_3/Surface_mesh_geodesic_distances_3.h @@ -740,7 +740,7 @@ struct Base_helper * time after changes of the set of sources. * * \tparam TriangleMesh a triangulated surface mesh, model of `FaceListGraph` and `HalfedgeListGraph` - * \tparam Mode must be `Intrinsic_Delaunay` to indicatethat an intrinsic Delaunay triangulation is internally constructed () + * \tparam Mode must be `Intrinsic_Delaunay` to indicate that an intrinsic Delaunay triangulation is internally constructed * or `Direct`to indicate that the input mesh should be used as is. * If `Intrinsic_Delaunay` the type `TriangleMesh` must have an internal property for `vertex_point` * and its value type must be the same as the value type of `VertexPointMap`.