summaryrefslogtreecommitdiff
path: root/src/mbgl/geometry/resample.hpp
blob: ce7eba2f1b54232031798d41e3e24f08ee40a7c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MBGL_GEOMETRY_INTERPOLATE
#define MBGL_GEOMETRY_INTERPOLATE

#include <mbgl/geometry/anchor.hpp>
#include <mbgl/util/math.hpp>

namespace mbgl {

Anchors resample(const std::vector<Coordinate> &vertices, float spacing,
                 float minScale, float maxScale, float tilePixelRatio, float offset);
}

#endif