summaryrefslogtreecommitdiff
path: root/include/mbgl/geometry/resample.hpp
blob: bcfe4ca53d7b4931b1b4dd04c5737489a980a653 (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, int start = 0);
}

#endif