summaryrefslogtreecommitdiff
path: root/src/mbgl/geometry/anchor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/geometry/anchor.hpp')
-rw-r--r--src/mbgl/geometry/anchor.hpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mbgl/geometry/anchor.hpp b/src/mbgl/geometry/anchor.hpp
index 9bc979343e..3ed2b23e1b 100644
--- a/src/mbgl/geometry/anchor.hpp
+++ b/src/mbgl/geometry/anchor.hpp
@@ -6,17 +6,15 @@
namespace mbgl {
-struct Anchor {
+class Anchor {
+public:
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_)
+ Anchor(float x_, float y_, float angle_, float scale_, int segment_ = -1)
: point(x_, y_), angle(angle_), scale(scale_), segment(segment_) {}
-
};
typedef std::vector<Anchor> Anchors;