Searched defs:nodeA (Results 1 - 18 of 18) sorted by relevance

/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/
H A DPhysicsCollisionGroupListener.java19 * @param nodeA CollisionObject #1
23 public boolean collide(PhysicsCollisionObject nodeA, PhysicsCollisionObject nodeB); argument
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
H A DConeJoint.java67 public ConeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { argument
68 super(nodeA, nodeB, pivotA, pivotB);
78 public ConeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB) { argument
79 super(nodeA, nodeB, pivotA, pivotB);
129 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, rotA, pivotB, rotB);
H A DPhysicsJoint.java48 protected PhysicsRigidBody nodeA; field in class:PhysicsJoint
61 public PhysicsJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { argument
62 this.nodeA = nodeA;
66 nodeA.addJoint(this);
100 return nodeA;
125 capsule.write(nodeA, "nodeA", null);
133 this.nodeA = ((PhysicsRigidBody) capsule.readSavable("nodeA", ne
[all...]
H A DPoint2PointJoint.java60 public Point2PointJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { argument
61 super(nodeA, nodeB, pivotA, pivotB);
121 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, pivotB);
H A DSixDofSpringJoint.java63 public SixDofSpringJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) { argument
64 super(nodeA, nodeB, pivotA, pivotB, rotA, rotB, useLinearReferenceFrameA);
H A DSixDofJoint.java78 public SixDofJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) { argument
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) { argument
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);
H A DHingeJoint.java69 public HingeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Vector3f axisA, Vector3f axisB) { argument
70 super(nodeA, nodeB, pivotA, pivotB);
184 objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, axisA, pivotB, axisB);
H A DSliderJoint.java62 public SliderJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) { argument
63 super(nodeA, nodeB, pivotA, pivotB);
74 public SliderJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, boolean useLinearReferenceFrameA) { argument
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/
H A DConeJoint.java68 public ConeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { argument
69 super(nodeA, nodeB, pivotA, pivotB);
79 public ConeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB) { argument
80 super(nodeA, nodeB, pivotA, pivotB);
134 constraint = new ConeTwistConstraint(nodeA.getObjectId(), nodeB.getObjectId(), transA, transB);
H A DPhysicsJoint.java47 protected PhysicsRigidBody nodeA; field in class:PhysicsJoint
60 public PhysicsJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { argument
61 this.nodeA = nodeA;
65 nodeA.addJoint(this);
97 return nodeA;
122 capsule.write(nodeA, "nodeA", null);
130 this.nodeA = ((PhysicsRigidBody) capsule.readSavable("nodeA", ne
[all...]
H A DPoint2PointJoint.java60 public Point2PointJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB) { argument
61 super(nodeA, nodeB, pivotA, pivotB);
109 constraint = new Point2PointConstraint(nodeA.getObjectId(), nodeB.getObjectId(), Converter.convert(pivotA), Converter.convert(pivotB));
H A DHingeJoint.java69 public HingeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Vector3f axisA, Vector3f axisB) { argument
70 super(nodeA, nodeB, pivotA, pivotB);
152 constraint = new HingeConstraint(nodeA.getObjectId(), nodeB.getObjectId(),
H A DSixDofJoint.java78 public SixDofJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) { argument
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) { argument
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);
H A DSliderJoint.java62 public SliderJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) { argument
63 super(nodeA, nodeB, pivotA, pivotB);
74 public SliderJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, boolean useLinearReferenceFrameA) { argument
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/
H A DPhysicsCollisionEvent.java52 private PhysicsCollisionObject nodeA; field in class:PhysicsCollisionEvent
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/
H A DPhysicsCollisionEvent.java50 private PhysicsCollisionObject nodeA; field in class:PhysicsCollisionEvent
54 public PhysicsCollisionEvent(int type, PhysicsCollisionObject nodeA, PhysicsCollisionObject nodeB, long manifoldPointObjectId) { argument
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/
H A DTreeScope.cpp438 TreeScope* commonTreeScope(Node* nodeA, Node* nodeB) argument
440 if (!nodeA || !nodeB)
443 if (nodeA->treeScope() == nodeB->treeScope())
444 return nodeA->treeScope();
447 listTreeScopes(nodeA, treeScopesA);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 263 milliseconds