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

#include <mbgl/tile/geometry_tile.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 mbgl