aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/math/bbox.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2020-02-11 11:29:07 +0800
committerchai <chaifix@163.com>2020-02-11 11:29:07 +0800
commit160e1299ef3d95f8e8c48706d7f61dd3dc6c6b60 (patch)
treeabe5ae5242d9cc6caf6edf103e662c44e978fca0 /src/libjin/math/bbox.h
parente095043485d1d298571af6d9eca7f0db9009ea7a (diff)
*修改 tab大小HEADmaster
Diffstat (limited to 'src/libjin/math/bbox.h')
-rw-r--r--src/libjin/math/bbox.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/libjin/math/bbox.h b/src/libjin/math/bbox.h
index ce88080..97b67cb 100644
--- a/src/libjin/math/bbox.h
+++ b/src/libjin/math/bbox.h
@@ -3,28 +3,28 @@
namespace JinEngine
{
- namespace Math
- {
+ namespace Math
+ {
- ///
- ///
- ///
- struct BBox
- {
- BBox()
- : l(0), r(0), t(0), b(0)
- {
- }
+ ///
+ ///
+ ///
+ 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)
- {
- }
+ BBox(float _l, float _r, float _t, float _b)
+ : l(+l), r(_r), t(_t), b(_b)
+ {
+ }
- float l, r, t, b;
- };
+ float l, r, t, b;
+ };
- } // namespace Math
+ } // namespace Math
} // namespace JinEngine
#endif // __JE_BBOX_H__ \ No newline at end of file