Home
last modified time | relevance | path

Searched refs:constructionInfo (Results 1 – 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
DPhysicsRigidBody.java67 protected RigidBodyConstructionInfo constructionInfo; field in PhysicsRigidBody
114 rBody = new RigidBody(constructionInfo); in rebuildRigidBody()
123 if (constructionInfo == null) { in preRebuild()
124constructionInfo = new RigidBodyConstructionInfo(mass, motionState, collisionShape.getCShape(), lo… in preRebuild()
126 constructionInfo.mass = mass; in preRebuild()
127 constructionInfo.collisionShape = collisionShape.getCShape(); in preRebuild()
128 constructionInfo.motionState = motionState; in preRebuild()
366 constructionInfo.friction = friction; in setFriction()
371 constructionInfo.linearDamping = linearDamping; in setDamping()
372 constructionInfo.angularDamping = angularDamping; in setDamping()
[all …]
/external/jmonkeyengine/engine/src/bullet-native/
DjmePhysicsSpace.cpp75 PosixThreadSupport::ThreadConstructionInfo constructionInfo("collision", SolverThreadFunc, in createSolverThreadSupport()
77 PosixThreadSupport* threadSupport = new PosixThreadSupport(constructionInfo); in createSolverThreadSupport()