mirror of https://github.com/CGAL/cgal
Document the constructor of Epick_d::Weighted_point_d.
This commit is contained in:
parent
baed1ab6af
commit
49d1292a7d
|
|
@ -75,6 +75,21 @@ Cartesian_const_iterator_d cartesian_begin()const;
|
||||||
Cartesian_const_iterator_d cartesian_end()const;
|
Cartesian_const_iterator_d cartesian_end()const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*!
|
||||||
|
represents a weighted point in the Euclidean space
|
||||||
|
\cgalModels `DefaultConstructible`
|
||||||
|
\cgalModels `Assignable`
|
||||||
|
*/
|
||||||
|
class Weighted_point_d {
|
||||||
|
public:
|
||||||
|
/*! introduces a weighted point with point p and weight w. */
|
||||||
|
Weighted_point_d(const Point_d& p, const FT& w);
|
||||||
|
/*! extracts the point of a weighted point. */
|
||||||
|
Point_d point()const;
|
||||||
|
/*! extracts the weight of a weighted point. */
|
||||||
|
FT weight()const;
|
||||||
|
};
|
||||||
|
|
||||||
/*! \cgalModels `Kernel_d::Center_of_sphere_d`
|
/*! \cgalModels `Kernel_d::Center_of_sphere_d`
|
||||||
*/
|
*/
|
||||||
struct Construct_circumcenter_d {
|
struct Construct_circumcenter_d {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue