summaryrefslogtreecommitdiff
path: root/src/mbgl/util/intersection_tests.hpp
blob: 6922c6afb6a10b85fd0feecba2816fdc9df152ff (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 mbgl