mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 14:56:14 +03:00
14 lines
191 B
C
14 lines
191 B
C
|
|
|
|
#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
|