inertia.h 252 B

1234567891011121314
  1. #ifndef __c3dlas__inertia_h__
  2. #define __c3dlas__inertia_h__
  3. #include "c3dlas.h"
  4. void inertiaSphere(Matrix3* mat, float mass, float radius);
  5. // axis aligned box
  6. void inertiaBox(Matrix3* mat, float mass, vec3 dims);
  7. #endif // __c3dlas__inertia_h__