forked from bartvdbraak/blender
feb4f51103
Only windows projectfiles for now. Will ask Hans to get unix makefiles done.
18 lines
254 B
C
18 lines
254 B
C
|
|
#ifndef MASS_PROPS_H
|
|
#define MASS_PROPS_H
|
|
|
|
#include <SimdVector3.h>
|
|
|
|
struct MassProps {
|
|
MassProps(float mass,const SimdVector3& inertiaLocal):
|
|
m_mass(mass),
|
|
m_inertiaLocal(inertiaLocal)
|
|
{
|
|
}
|
|
float m_mass;
|
|
SimdVector3 m_inertiaLocal;
|
|
};
|
|
|
|
|
|
#endif |