#include <rmm/cuda_stream_view.hpp>
#include <cuspatial/detail/point_in_polygon.cuh>
查看该文件的源代码。
|
| template<class PointRange, class PolygonRange, class OutputIt> |
| OutputIt | cuspatial::point_in_polygon (PointRange points, PolygonRange polygons, OutputIt output, rmm::cuda_stream_view stream=rmm::cuda_stream_default) |
| | 测试指定的点是否在任何指定的面内。
|
| |
| template<typename PointRange, typename PolygonRange, typename OutputIt> |
| OutputIt | cuspatial::pairwise_point_in_polygon (PointRange points, PolygonRange polygons, OutputIt results, rmm::cuda_stream_view stream=rmm::cuda_stream_default) |
| | 给定 (点, 面) 对,测试对中的点是否在该对中的面内。
|
| |