mirror of https://github.com/CGAL/cgal
Weighted alpha shape euclidean traits are deprecated
This commit is contained in:
parent
636b04de83
commit
9098e45c62
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in New Issue