aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/math/je_bbox.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-12-21 19:02:22 +0800
committerchai <chaifix@163.com>2018-12-21 19:02:22 +0800
commit84a663cb70b057a5ce0c9ff1910bc2eb9c0ba653 (patch)
tree625d2a7804c6f29aac367098972f96a47fcb7ae3 /src/libjin/math/je_bbox.h
parent90cd4ff40e647e4150638e69f80ac587ceff1631 (diff)
+2d mesh
Diffstat (limited to 'src/libjin/math/je_bbox.h')
-rw-r--r--src/libjin/math/je_bbox.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/libjin/math/je_bbox.h b/src/libjin/math/je_bbox.h
new file mode 100644
index 0000000..ce88080
--- /dev/null
+++ b/src/libjin/math/je_bbox.h
@@ -0,0 +1,30 @@
+#ifndef __JE_BBOX_H__
+#define __JE_BBOX_H__
+
+namespace JinEngine
+{
+ namespace Math
+ {
+
+ ///
+ ///
+ ///
+ struct BBox
+ {
+ BBox()
+ : l(0), r(0), t(0), b(0)
+ {
+ }
+
+ BBox(float _l, float _r, float _t, float _b)
+ : l(+l), r(_r), t(_t), b(_b)
+ {
+ }
+
+ float l, r, t, b;
+ };
+
+ } // namespace Math
+} // namespace JinEngine
+
+#endif // __JE_BBOX_H__ \ No newline at end of file