aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/math/bbox.h
diff options
context:
space:
mode:
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