|
CGAL 5.1 - dD Spatial Searching
|
#include <CGAL/Search_traits_adapter.h>
Inherits 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 ReadablePropertyMap 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. More... | |
Operations | |
| const PointPropertyMap & | point_property_map () const |
| Returns the point property map. More... | |
| typedef Base_distance::FT CGAL::Distance_adapter< Key, PointPropertyMap, Base_distance >::FT |
| typedef Key CGAL::Distance_adapter< Key, PointPropertyMap, Base_distance >::Point_d |
| typedef Base_distance::Query_item CGAL::Distance_adapter< Key, PointPropertyMap, Base_distance >::Query_item |
| CGAL::Distance_adapter< Key, PointPropertyMap, Base_distance >::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.
| const PointPropertyMap& CGAL::Distance_adapter< Key, PointPropertyMap, Base_distance >::point_property_map | ( | ) | const |
Returns the point property map.