[dali_2.3.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-physics / third-party / bullet3 / src / Bullet3Collision / NarrowPhaseCollision / b3RaycastInfo.h
1
2 #ifndef B3_RAYCAST_INFO_H
3 #define B3_RAYCAST_INFO_H
4
5 #include "Bullet3Common/b3Vector3.h"
6
7 B3_ATTRIBUTE_ALIGNED16(struct)
8 b3RayInfo
9 {
10         b3Vector3 m_from;
11         b3Vector3 m_to;
12 };
13
14 B3_ATTRIBUTE_ALIGNED16(struct)
15 b3RayHit
16 {
17         b3Scalar m_hitFraction;
18         int m_hitBody;
19         int m_hitResult1;
20         int m_hitResult2;
21         b3Vector3 m_hitPoint;
22         b3Vector3 m_hitNormal;
23 };
24
25 #endif  //B3_RAYCAST_INFO_H