Weighted alpha shape euclidean traits are deprecated

This commit is contained in:
Mael Rouxel-Labbé 2017-05-02 16:27:15 +02:00
parent 636b04de83
commit 9098e45c62
1 changed files with 10 additions and 5 deletions

View File

@ -4,17 +4,22 @@ namespace CGAL {
/*!
\ingroup PkgAlphaShape2
The class `Weighted_alpha_shape_euclidean_traits_2` is the default model for the concept
`AlphaShapeTraits_2` for the regular version of Alpha Shapes.
\deprecated The class is deprecated since \cgal 4.10, as the weighted point and the function
objects for weighted points are part of the concept `Kernel`. The class is kept for backward
compatibility.
\tparam K must be a `Kernel`.
The class `Weighted_alpha_shape_euclidean_traits_2` was the default model for the concept
`AlphaShapeTraits_2` for the regular version of Alpha Shapes.
\tparam K must be a model of `Kernel`.
\cgalModels `AlphaShapeTraits_2`
*/
template< typename K >
class Weighted_alpha_shape_euclidean_traits_2 :
public Regular_triangulation_euclidean_traits_2<K, typename K::FT> {
class Weighted_alpha_shape_euclidean_traits_2
: public K
{
public:
}; /* end Weighted_alpha_shape_euclidean_traits_2 */