#pragma once #include #include #include #include namespace mbgl { class Anchor { public: Point point; float angle = 0.0f; optional segment; Anchor(float x_, float y_, float angle_, optional segment_ = nullopt) : point(x_, y_), angle(angle_), segment(std::move(segment_)) {} }; using Anchors = std::vector; } // namespace mbgl