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

#include <mbgl/util/vec.hpp>

namespace mbgl {

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

}

#endif