/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/ |
PhysicsCollisionGroupListener.java | 19 * @param nodeA CollisionObject #1 23 public boolean collide(PhysicsCollisionObject nodeA, PhysicsCollisionObject nodeB);
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/ |
PhysicsJoint.java | 48 protected PhysicsRigidBody nodeA; 61 public PhysicsJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { 62 this.nodeA = nodeA; 66 nodeA.addJoint(this); 100 return nodeA; 125 capsule.write(nodeA, "nodeA", null); 133 this.nodeA = ((PhysicsRigidBody) capsule.readSavable("nodeA", new PhysicsRigidBody())) [all...] |
SixDofSpringJoint.java | 63 public SixDofSpringJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) { 64 super(nodeA, nodeB, pivotA, pivotB, rotA, rotB, useLinearReferenceFrameA);
|
ConeJoint.java | 67 public ConeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { 68 super(nodeA, nodeB, pivotA, pivotB); 78 public ConeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB) { 79 super(nodeA, nodeB, pivotA, pivotB); 129 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, rotA, pivotB, rotB);
|
Point2PointJoint.java | 60 public Point2PointJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { 61 super(nodeA, nodeB, pivotA, pivotB); 121 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, pivotB);
|
SixDofJoint.java | 78 public SixDofJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) { 79 super(nodeA, nodeB, pivotA, pivotB); 84 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, rotA, pivotB, rotB, useLinearReferenceFrameA); 93 public SixDofJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, boolean useLinearReferenceFrameA) { 94 super(nodeA, nodeB, pivotA, pivotB); 99 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, rotA, pivotB, rotB, useLinearReferenceFrameA); 170 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, rotA, pivotB, rotB, useLinearReferenceFrameA);
|
HingeJoint.java | 69 public HingeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Vector3f axisA, Vector3f axisB) { 70 super(nodeA, nodeB, pivotA, pivotB); 184 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, axisA, pivotB, axisB);
|
SliderJoint.java | 62 public SliderJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) { 63 super(nodeA, nodeB, pivotA, pivotB); 74 public SliderJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, boolean useLinearReferenceFrameA) { 75 super(nodeA, nodeB, pivotA, pivotB); 532 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, rotA, pivotB, rotB, useLinearReferenceFrameA); 534 // = new SliderConstraint(nodeA.getObjectId(), nodeB.getObjectId(), transA, transB, useLinearReferenceFrameA);
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/ |
PhysicsJoint.java | 47 protected PhysicsRigidBody nodeA; 60 public PhysicsJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { 61 this.nodeA = nodeA; 65 nodeA.addJoint(this); 97 return nodeA; 122 capsule.write(nodeA, "nodeA", null); 130 this.nodeA = ((PhysicsRigidBody) capsule.readSavable("nodeA", new PhysicsRigidBody())) [all...] |
Point2PointJoint.java | 60 public Point2PointJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { 61 super(nodeA, nodeB, pivotA, pivotB); 109 constraint = new Point2PointConstraint(nodeA.getObjectId(), nodeB.getObjectId(), Converter.convert(pivotA), Converter.convert(pivotB));
|
ConeJoint.java | 68 public ConeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { 69 super(nodeA, nodeB, pivotA, pivotB); 79 public ConeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB) { 80 super(nodeA, nodeB, pivotA, pivotB); 134 constraint = new ConeTwistConstraint(nodeA.getObjectId(), nodeB.getObjectId(), transA, transB);
|
SixDofJoint.java | 78 public SixDofJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) { 79 super(nodeA, nodeB, pivotA, pivotB); 90 constraint = new Generic6DofConstraint(nodeA.getObjectId(), nodeB.getObjectId(), transA, transB, useLinearReferenceFrameA); 98 public SixDofJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, boolean useLinearReferenceFrameA) { 99 super(nodeA, nodeB, pivotA, pivotB); 108 constraint = new Generic6DofConstraint(nodeA.getObjectId(), nodeB.getObjectId(), transA, transB, useLinearReferenceFrameA); 169 constraint = new Generic6DofConstraint(nodeA.getObjectId(), nodeB.getObjectId(), transA, transB, useLinearReferenceFrameA);
|
HingeJoint.java | 69 public HingeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Vector3f axisA, Vector3f axisB) { 70 super(nodeA, nodeB, pivotA, pivotB); 152 constraint = new HingeConstraint(nodeA.getObjectId(), nodeB.getObjectId(),
|
SliderJoint.java | 62 public SliderJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) { 63 super(nodeA, nodeB, pivotA, pivotB); 74 public SliderJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, boolean useLinearReferenceFrameA) { 75 super(nodeA, nodeB, pivotA, pivotB); 428 constraint = new SliderConstraint(nodeA.getObjectId(), nodeB.getObjectId(), transA, transB, useLinearReferenceFrameA);
|
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/ |
PhysicsCollisionEvent.java | 52 private PhysicsCollisionObject nodeA; 59 this.nodeA = source; 70 nodeA = null; 81 this.nodeA = source; 94 if (nodeA.getUserObject() instanceof Spatial) { 95 return (Spatial) nodeA.getUserObject(); 111 return nodeA;
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/ |
PhysicsCollisionEvent.java | 50 private PhysicsCollisionObject nodeA; 54 public PhysicsCollisionEvent(int type, PhysicsCollisionObject nodeA, PhysicsCollisionObject nodeB, long manifoldPointObjectId) { 55 super(nodeA); 65 this.nodeA = null; 76 this.nodeA = source; 89 if (nodeA.getUserObject() instanceof Spatial) { 90 return (Spatial) nodeA.getUserObject(); 106 return nodeA;
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
TreeScope.cpp | 432 TreeScope* commonTreeScope(Node* nodeA, Node* nodeB) 434 if (!nodeA || !nodeB) 437 if (nodeA->treeScope() == nodeB->treeScope()) 438 return &nodeA->treeScope(); 441 listTreeScopes(nodeA, treeScopesA);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
HeapSnapshot.js | [all...] |
HeapSnapshotDataGrids.js | 203 function SortByTwoFields(nodeA, nodeB) 205 var field1 = nodeA[sortFields[0]]; 212 field1 = nodeA[sortFields[2]]; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
htmlediting.cpp | 82 Node* nodeA = commonScope->ancestorInThisScope(a.containerNode()); 83 ASSERT(nodeA); 84 bool hasDescendentA = nodeA != a.containerNode(); 93 if (nodeA == nodeB) { 100 int result = Range::compareBoundaryPoints(nodeA, offsetA, nodeB, offsetB, IGNORE_EXCEPTION); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/ |
compiler.jar | |