OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:b2Mul
(Results
1 - 2
of
2
) sorted by null
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btBox2dBox2dCollisionAlgorithm.cpp
93
#define
b2Mul
(a,b) (a)*(b)
147
btVector3 normal1World =
b2Mul
(xf1.getBasis(), normals1[edge1]);
157
btVector3 v1 =
b2Mul
(xf1, vertices1[edge1]);
158
btVector3 v2 =
b2Mul
(xf2, vertices2[index]);
172
btVector3 d =
b2Mul
(xf2, poly2->getCentroid()) -
b2Mul
(xf1, poly1->getCentroid());
268
btVector3 normal1 = b2MulT(xf2.getBasis(),
b2Mul
(xf1.getBasis(), normals1[edge1]));
287
c[0].v =
b2Mul
(xf2, vertices2[i1]);
292
c[1].v =
b2Mul
(xf2, vertices2[i2]);
358
btVector3 sideNormal =
b2Mul
(xf1.getBasis(), v12 - v11)
[
all
...]
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Common/
b2Math.h
437
inline b2Vec2
b2Mul
(const b2Mat22& A, const b2Vec2& v)
518
inline b2Mat22
b2Mul
(const b2Mat22& A, const b2Mat22& B)
520
return b2Mat22(
b2Mul
(A, B.ex),
b2Mul
(A, B.ey));
532
inline b2Vec3
b2Mul
(const b2Mat33& A, const b2Vec3& v)
544
inline b2Rot
b2Mul
(const b2Rot& q, const b2Rot& r)
570
inline b2Vec2
b2Mul
(const b2Rot& q, const b2Vec2& v)
581
inline b2Vec2
b2Mul
(const b2Transform& T, const b2Vec2& v)
601
inline b2Transform
b2Mul
(const b2Transform& A, const b2Transform& B)
604
C.q =
b2Mul
(A.q, B.q)
[
all
...]
Completed in 76 milliseconds