#include <CGAL/Fuzzy_sphere.h>
The class Fuzzy_sphere implements fuzzy d-dimensional spheres.
A fuzzy sphere with radius \( r\) and fuzziness value \( \epsilon\) has as outer approximation a sphere with radius \( r+\epsilon\) and as inner approximation a sphere with radius \( r-\epsilon\).
- Template Parameters
-
- Is Model Of:
FuzzyQueryItem
- See Also
FuzzyQueryItem
- Examples:
- Spatial_searching/circular_query.cpp, Spatial_searching/fuzzy_range_query.cpp, and Spatial_searching/searching_with_circular_query.cpp.
|
|
| Fuzzy_sphere (Point_d center, FT radius, FT epsilon=FT(0), Traits t=Traits()) |
| | Constructs a fuzzy sphere centered at center with radius radius and fuzziness value epsilon.
|
| |
| | Fuzzy_sphere (Traits::Base::Point_d center, FT radius, FT epsilon=FT(0), Traits t=Traits()) |
| | Constructs a fuzzy sphere centered at center with radius radius and fuzziness value epsilon. More...
|
| |
template<typename Traits >
Constructs a fuzzy sphere centered at center with radius radius and fuzziness value epsilon.
- Attention
- Only available in case
Traits is Search_traits_adapter<Key,PointPropertyMap,BaseTraits>.