summaryrefslogtreecommitdiff
path: root/src/mbgl/text/placement_config.hpp
blob: 48b24b5f4170a81a4157a3239ff1558dd4b67663 (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
25
26
27
28
29
30
31
32
33
#pragma once

#include <mbgl/util/constants.hpp>

namespace mbgl {

class PlacementConfig {
public:
    PlacementConfig(float angle_ = 0, float pitch_ = 0, float cameraToCenterDistance_ = 0, float cameraToTileDistance_ = 0, bool debug_ = false)
        : angle(angle_), pitch(pitch_), cameraToCenterDistance(cameraToCenterDistance_), cameraToTileDistance(cameraToTileDistance_), debug(debug_) {
    }

    bool operator==(const PlacementConfig& rhs) const {
        return angle == rhs.angle &&
            pitch == rhs.pitch &&
            debug == rhs.debug &&
            ((pitch * util::RAD2DEG < 25) ||
             (cameraToCenterDistance == rhs.cameraToCenterDistance && cameraToTileDistance == rhs.cameraToTileDistance));
    }

    bool operator!=(const PlacementConfig& rhs) const {
        return !operator==(rhs);
    }

public:
    float angle;
    float pitch;
    float cameraToCenterDistance;
    float cameraToTileDistance;
    bool debug;
};

} // namespace mbgl