summaryrefslogtreecommitdiff
path: root/src/mbgl/geometry/anchor.hpp
blob: 9bc979343e1cda249776062f729674c406d3939b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

#include <mbgl/util/geometry.hpp>

#include <vector>

namespace mbgl {

struct Anchor {
    Point<float> point;
    float angle = 0.0f;
    float scale = 0.0f;
    int segment = -1;

    explicit Anchor(float x_, float y_, float angle_, float scale_)
        : point(x_, y_), angle(angle_), scale(scale_) {}
    explicit Anchor(float x_, float y_, float angle_, float scale_, int segment_)
        : point(x_, y_), angle(angle_), scale(scale_), segment(segment_) {}

};

typedef std::vector<Anchor> Anchors;

} // namespace mbgl