summaryrefslogtreecommitdiff
path: root/src/mbgl/util/vec.hpp
blob: 60065b4fc3d8277a81b7b524aef1ad0dfa21e1e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MBGL_UTIL_VEC
#define MBGL_UTIL_VEC

#include <mbgl/util/vec.hpp>

namespace mbgl {

struct box {
    vec2<double> tl, tr, bl, br;
    vec2<double> center;
};

}

#endif