OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_fixtureA
(Results
1 - 2
of
2
) sorted by null
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Contacts/
b2Contact.h
186
b2Contact() :
m_fixtureA
(NULL), m_fixtureB(NULL) {}
205
b2Fixture*
m_fixtureA
;
234
const b2Body* bodyA =
m_fixtureA
->GetBody();
236
const b2Shape* shapeA =
m_fixtureA
->GetShape();
276
return
m_fixtureA
;
281
return
m_fixtureA
;
321
m_friction = b2MixFriction(
m_fixtureA
->m_friction, m_fixtureB->m_friction);
336
m_restitution = b2MixRestitution(
m_fixtureA
->m_restitution, m_fixtureB->m_restitution);
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/contacts/
Contact.java
72
public Fixture
m_fixtureA
;
91
m_fixtureA
= null;
103
m_fixtureA
= fA;
142
final Body bodyA =
m_fixtureA
.getBody();
144
final Shape shapeA =
m_fixtureA
.getShape();
198
return
m_fixtureA
;
227
m_friction = Contact.mixFriction(
m_fixtureA
.m_friction, m_fixtureB.m_friction);
239
m_restitution = Contact.mixRestitution(
m_fixtureA
.m_restitution, m_fixtureB.m_restitution);
272
boolean sensorA =
m_fixtureA
.isSensor();
276
Body bodyA =
m_fixtureA
.getBody()
[
all
...]
Completed in 238 milliseconds