CGAL 4.8.1 - dD Spatial Searching
|
#include <CGAL/Search_traits_adapter.h>
Base_distance.
A class that uses a point property map to adapt a distance class to work on a key as point type.
When using Search_traits_adapter<Key,PointPropertyMap,BaseTraits>
in a nearest neighbor search algorithm, this class must be used as distance.
Key | is a type that is associated to a point of type Base_distance::Point_d . |
PointPropertyMap | is a model of LvaluePropertyMap with Key as key type and Base_distance::Point_d as value type. |
Base_distance | is a model of either GeneralDistance or OrthogonalDistance . |
GeneralDistance
if Base_distance is a model of GeneralDistance
OrthogonalDistance
if Base_distance is a model of OrthogonalDistance
Search_traits_adapter<Key,PointPropertyMap,BaseTraits>
Types | |
typedef Base_distance::FT | FT |
typedef Key | Point_d |
typedef Base_distance::Query_item | Query_item |
Creation | |
Distance_adapter (const PointPropertyMap &ppmap=PointPropertyMap(), const Base_distance &base=Base_distance()) | |
Constructor initializing the class to base and setting the point property map of the class to ppmap . | |
Operations | |
const PointPropertyMap & | point_property_map () const |
Returns the point property map. | |