blob: 602a1335aa820309df0c66c79d22caf1b3a2df1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef B3_INERTIA_H
#define B3_INERTIA_H
#include "Bullet3Common/shared/b3Mat3x3.h"
struct b3Inertia
{
b3Mat3x3 m_invInertiaWorld;
b3Mat3x3 m_initInvInertia;
};
#endif //B3_INERTIA_H
|