Bullet Collision Detection & Physics Library
btGImpactMassUtil.h
Go to the documentation of this file.
1
4/*
5This source file is part of GIMPACT Library.
6
7For the latest info, see http://gimpact.sourceforge.net/
8
9Copyright (c) 2007 Francisco Leon Najera. C.C. 80087371.
10email: projectileman@yahoo.com
11
12
13This software is provided 'as-is', without any express or implied warranty.
14In no event will the authors be held liable for any damages arising from the use of this software.
15Permission is granted to anyone to use this software for any purpose,
16including commercial applications, and to alter it and redistribute it freely,
17subject to the following restrictions:
18
191. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
202. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
213. This notice may not be removed or altered from any source distribution.
22*/
23
24#ifndef GIMPACT_MASS_UTIL_H
25#define GIMPACT_MASS_UTIL_H
26
28
30 const btVector3& source_inertia, const btVector3& added_inertia, const btTransform& transform)
31{
32 btMatrix3x3 rotatedTensor = transform.getBasis().scaled(added_inertia) * transform.getBasis().transpose();
33
34 btScalar x2 = transform.getOrigin()[0];
35 x2 *= x2;
36 btScalar y2 = transform.getOrigin()[1];
37 y2 *= y2;
38 btScalar z2 = transform.getOrigin()[2];
39 z2 *= z2;
40
41 btScalar ix = rotatedTensor[0][0] * (y2 + z2);
42 btScalar iy = rotatedTensor[1][1] * (x2 + z2);
43 btScalar iz = rotatedTensor[2][2] * (x2 + y2);
44
45 return btVector3(source_inertia[0] + ix, source_inertia[1] + iy, source_inertia[2] + iz);
46}
47
49{
50 btScalar x2 = point[0] * point[0];
51 btScalar y2 = point[1] * point[1];
52 btScalar z2 = point[2] * point[2];
53 return btVector3(mass * (y2 + z2), mass * (x2 + z2), mass * (x2 + y2));
54}
55
56#endif //GIMPACT_MESH_SHAPE_H
btVector3 gim_get_point_inertia(const btVector3 &point, btScalar mass)
btVector3 gim_inertia_add_transformed(const btVector3 &source_inertia, const btVector3 &added_inertia, const btTransform &transform)
float btScalar
The btScalar type abstracts floating point numbers, to easily switch between double and single floati...
Definition: btScalar.h:314
#define SIMD_FORCE_INLINE
Definition: btScalar.h:98
The btMatrix3x3 class implements a 3x3 rotation matrix, to perform linear algebra in combination with...
Definition: btMatrix3x3.h:50
btMatrix3x3 transpose() const
Return the transpose of the matrix.
Definition: btMatrix3x3.h:1049
btMatrix3x3 scaled(const btVector3 &s) const
Create a scaled copy of the matrix.
Definition: btMatrix3x3.h:622
The btTransform class supports rigid transforms with only translation and rotation and no scaling/she...
Definition: btTransform.h:30
btMatrix3x3 & getBasis()
Return the basis matrix for the rotation.
Definition: btTransform.h:109
btVector3 & getOrigin()
Return the origin vector translation.
Definition: btTransform.h:114
btVector3 can be used to represent 3D points and vectors.
Definition: btVector3.h:82