summaryrefslogtreecommitdiff
path: root/include/llmr/geometry/interpolate.hpp
blob: 0014d56aadc5f3098e35e3077681dcadb280b930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef LLMR_GEOMETRY_INTERPOLATE
#define LLMR_GEOMETRY_INTERPOLATE

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

namespace llmr {

Anchors interpolate(const std::vector<Coordinate> &vertices, float spacing,
                    float minScale = 0.0f, int start = 0);
}

#endif