Document the constructor of Epick_d::Weighted_point_d.

This commit is contained in:
Marc Glisse 2015-10-28 15:40:45 +01:00
parent baed1ab6af
commit 49d1292a7d
1 changed files with 15 additions and 0 deletions

View File

@ -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 {