Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/bullet/BulletDynamics/Dynamics/MassProps.h')
-rw-r--r--extern/bullet/BulletDynamics/Dynamics/MassProps.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/extern/bullet/BulletDynamics/Dynamics/MassProps.h b/extern/bullet/BulletDynamics/Dynamics/MassProps.h
new file mode 100644
index 00000000000..892e1c0b9a8
--- /dev/null
+++ b/extern/bullet/BulletDynamics/Dynamics/MassProps.h
@@ -0,0 +1,18 @@
+
+#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 \ No newline at end of file