summaryrefslogtreecommitdiff
path: root/include/mbgl/util/rect.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/rect.hpp')
-rw-r--r--include/mbgl/util/rect.hpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/mbgl/util/rect.hpp b/include/mbgl/util/rect.hpp
deleted file mode 100644
index f5c77f93d1..0000000000
--- a/include/mbgl/util/rect.hpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef MBGL_UTIL_RECT
-#define MBGL_UTIL_RECT
-
-namespace mbgl {
-
-template <typename T>
-struct Rect {
- inline Rect() {}
- inline Rect(T x_, T y_, T w_, T h_) : x(x_), y(y_), w(w_), h(h_) {}
- T x = 0, y = 0;
- T w = 0, h = 0;
-
- template <typename Number>
- Rect operator *(Number value) const {
- return Rect(x * value, y * value, w * value, h * value);
- }
-
- operator bool() const { return w != 0 && h != 0; }
-};
-}
-
-#endif