summaryrefslogtreecommitdiff
path: root/test/util/rotation.test.cpp
blob: 57189ae988016f1eb03e01757921facd2037f721 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <mbgl/test/util.hpp>

#include <mbgl/style/rotation.hpp>
#include <mbgl/style/types.hpp>
#include <mbgl/util/constants.hpp>
#include <mbgl/util/interpolate.hpp>

using namespace mbgl;
using namespace style;

Rotation createRotation(double angle) {
    return Rotation(angle);
}

TEST(Rotation, Calculations) {
    Rotation rot(42);
    EXPECT_EQ(rot, Rotation(42 + 360));
    Rotation rot2(-42);
    EXPECT_EQ(rot2, Rotation(360 - 42));

    mbgl::util::Interpolator<mbgl::style::Rotation> i;
    EXPECT_NEAR(i(rot, rot2, 0.5).getAngle(), 0.0, 0.00001);
}