diff options
Diffstat (limited to 'thirdparty/bullet/Bullet3Collision/NarrowPhaseCollision/b3RaycastInfo.h')
-rw-r--r-- | thirdparty/bullet/Bullet3Collision/NarrowPhaseCollision/b3RaycastInfo.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/thirdparty/bullet/Bullet3Collision/NarrowPhaseCollision/b3RaycastInfo.h b/thirdparty/bullet/Bullet3Collision/NarrowPhaseCollision/b3RaycastInfo.h index fba8bd07a4..b50c0eca4f 100644 --- a/thirdparty/bullet/Bullet3Collision/NarrowPhaseCollision/b3RaycastInfo.h +++ b/thirdparty/bullet/Bullet3Collision/NarrowPhaseCollision/b3RaycastInfo.h @@ -4,21 +4,22 @@ #include "Bullet3Common/b3Vector3.h" -B3_ATTRIBUTE_ALIGNED16(struct) b3RayInfo +B3_ATTRIBUTE_ALIGNED16(struct) +b3RayInfo { b3Vector3 m_from; b3Vector3 m_to; }; -B3_ATTRIBUTE_ALIGNED16(struct) b3RayHit +B3_ATTRIBUTE_ALIGNED16(struct) +b3RayHit { - b3Scalar m_hitFraction; - int m_hitBody; - int m_hitResult1; - int m_hitResult2; - b3Vector3 m_hitPoint; - b3Vector3 m_hitNormal; + b3Scalar m_hitFraction; + int m_hitBody; + int m_hitResult1; + int m_hitResult2; + b3Vector3 m_hitPoint; + b3Vector3 m_hitNormal; }; -#endif //B3_RAYCAST_INFO_H - +#endif //B3_RAYCAST_INFO_H |