summaryrefslogtreecommitdiff
path: root/src/mbgl/util/intersection_tests.hpp
blob: 6adb3b5fdfb4ba111cbb52188287c32a5c4e0743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <mbgl/tile/geometry_tile_data.hpp>

namespace mbgl {
namespace util {

bool polygonIntersectsBufferedMultiPoint(const GeometryCoordinates&, const GeometryCollection&, float radius);
bool polygonIntersectsBufferedMultiLine(const GeometryCoordinates&, const GeometryCollection&, float radius);
bool polygonIntersectsMultiPolygon(const GeometryCoordinates&, const GeometryCollection&);

} // namespace util
} // namespace mbgl