summaryrefslogtreecommitdiff
path: root/src/mbgl/util/intersection_tests.hpp
blob: be89d14ed6d443c67a24dd3664b780e3b232f6a5 (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 multiPolygonIntersectsBufferedMultiPoint(const GeometryCollection&, const GeometryCollection&, float radius);
bool multiPolygonIntersectsBufferedMultiLine(const GeometryCollection&, const GeometryCollection&, float radius);
bool multiPolygonIntersectsMultiPolygon(const GeometryCollection&, const GeometryCollection&);

} // namespace util
} // namespace mbgl