mirror of https://github.com/CGAL/cgal
Fix in cicumcenter()
This commit is contained in:
parent
ebabf5ac66
commit
4cb8fb2ba9
|
|
@ -49,7 +49,7 @@ If it has already been computed in the past, the cached value is returned.
|
|||
Computes the circumcenter of the tetrahedron, or retrieves it if already
|
||||
computed
|
||||
*/
|
||||
const Point& circumcenter(Traits> = Traits()) const;
|
||||
const Point& circumcenter(const Traits> = Traits()) const;
|
||||
|
||||
/// @}
|
||||
|
||||
|
|
|
|||
|
|
@ -34,9 +34,9 @@ typedef DelaunayTriangulationTraits_3::Point_3 Point;
|
|||
Returns the circumcenter of the cell.
|
||||
`DelaunayTriangulationTraits_3` is the geometric traits class of the triangulation.
|
||||
|
||||
This operator is required only when the dual functions are called.
|
||||
This operator is required only when the `dual()` functions are called.
|
||||
*/
|
||||
const Point& circumcenter(DelaunayTriangulationTraits_3> = DelaunayTriangulationTraits_3()) const;
|
||||
const Point& circumcenter(const DelaunayTriangulationTraits_3> = DelaunayTriangulationTraits_3()) const;
|
||||
/// @}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue