Changed comments

This commit is contained in:
Laurent Saboret 2008-09-09 12:36:32 +00:00
parent d7ae08ca93
commit eae2511f34
6 changed files with 8 additions and 8 deletions

View File

@ -101,12 +101,12 @@ public:
/// Owner is responsible to call this function after modifying the triangulation.
void invalidate_bounding_box();
/// Insert point to the triangulation.
/// Insert point in the triangulation.
Vertex_handle insert(const Point& p,
unsigned char type = INPUT /* INPUT or STEINER */,
Cell_handle start = Cell_handle());
/// Insert points to the triangulation using a spatial sort.
/// Insert points in the triangulation using a spatial sort.
///
/// Precondition: the value type of InputIterator must 'Point'.
///

View File

@ -234,7 +234,7 @@ int main(int argc, char * argv[])
return EXIT_FAILURE;
}
// Get implicit surface's size
// Get implicit surface's radius
Sphere bounding_sphere = apss_function.bounding_sphere();
FT size = sqrt(bounding_sphere.squared_radius());

View File

@ -247,7 +247,7 @@ int main(int argc, char * argv[])
return EXIT_FAILURE;
}
// Get implicit surface's size
// Get implicit surface's radius
Sphere bounding_sphere = poisson_function.bounding_sphere();
FT size = sqrt(bounding_sphere.squared_radius());

View File

@ -166,7 +166,7 @@ merge_epsilon_nearest_points_3(
// Replace [first, beyond) range by the content of points_to_keep, then points_to_remove.
ForwardIterator first_iterator_to_remove =
std::copy(points_to_keep.begin(), points_to_keep.end(), first);
std::copy(points_to_keep.begin(), points_to_keep.end(), first);
std::copy(points_to_remove.begin(), points_to_remove.end(), first_iterator_to_remove);
return first_iterator_to_remove;

View File

@ -231,7 +231,7 @@ int main(int argc, char * argv[])
continue;
}
// Get implicit surface's size
// Get implicit surface's radius
Sphere bounding_sphere = apss_function.bounding_sphere();
FT size = sqrt(bounding_sphere.squared_radius());

View File

@ -217,7 +217,7 @@ int main(int argc, char * argv[])
std::cerr << "Compute implicit function...\n";
/// Compute the Poisson indicator function f()
/// at each vertex of the triangulation
/// at each vertex of the triangulation.
if ( ! poisson_function.compute_implicit_function() )
{
std::cerr << "Error: cannot compute implicit function" << std::endl;
@ -251,7 +251,7 @@ int main(int argc, char * argv[])
continue;
}
// Get implicit surface's size
// Get implicit surface's radius
Sphere bounding_sphere = poisson_function.bounding_sphere();
FT size = sqrt(bounding_sphere.squared_radius());