Fix typo in example; Functions in manuals always with '()'

This commit is contained in:
Andreas Fabri 2016-11-10 11:28:28 +01:00 committed by Sébastien Loriot
parent 768e52fe54
commit c84e72f7a5
2 changed files with 5 additions and 5 deletions

View File

@ -257,10 +257,10 @@ and <code>src/</code> directories).
<ul>
<li>
Add functions to compute approximated Hausdorff distances between two meshes, a mesh and a point set, or a point set and a mesh:
<code>sample_triangle_mesh</code>, <code>approximated_Hausdorff_distance</code>,
<code>approximated_symmetric_Hausdorff_distance</code>,
<code>max_distance_to_triangle_mesh</code>,
<code>max_distance_to_point_set</code> and the enum <code>Sampling_method</code>
<code>sample_triangle_mesh()</code>, <code>approximated_Hausdorff_distance()</code>,
<code>approximated_symmetric_Hausdorff_distance()</code>,
<code>max_distance_to_triangle_mesh()</code>,
<code>max_distance_to_point_set()</code> and the enum <code>Sampling_method</code>
</li>
</ul>
<!-- Spatial Searching and Sorting -->

View File

@ -28,6 +28,6 @@ int main()
std::cout << "Approximated Hausdorff distance: "
<< CGAL::Polygon_mesh_processing::approximate_Hausdorff_distance
<TAG>(m1, m2, 4000)
<TAG>(tm1, tm2, 4000)
<< std::endl;
}