summaryrefslogtreecommitdiff
path: root/include/mbgl/geometry/interpolate.hpp
blob: cebbcc7028f257a410bbe4bbe0a8e2335251c42f (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 interpolate(const std::vector<Coordinate> &vertices, float spacing,
                    float minScale = 0.0f, int start = 0);
}

#endif