OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:axisB
(Results
1 - 3
of
3
) sorted by null
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
HingeJoint.java
55
protected Vector3f
axisB
;
69
public HingeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Vector3f axisA, Vector3f
axisB
) {
72
this.
axisB
=
axisB
;
144
capsule.write(
axisB
, "
axisB
", new Vector3f());
164
this.
axisB
= (Vector3f) capsule.readSavable("
axisB
", new Vector3f());
184
objectId = createJoint(nodeA.getObjectId(), nodeB.getObjectId(), pivotA, axisA, pivotB,
axisB
);
188
private native long createJoint(long objectIdA, long objectIdB, Vector3f pivotA, Vector3f axisA, Vector3f pivotB, Vector3f
axisB
);
[
all
...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
HingeJoint.java
55
protected Vector3f
axisB
;
69
public HingeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Vector3f axisA, Vector3f
axisB
) {
72
this.
axisB
=
axisB
;
112
capsule.write(
axisB
, "
axisB
", new Vector3f());
132
this.
axisB
= (Vector3f) capsule.readSavable("
axisB
", new Vector3f());
154
Converter.convert(axisA), Converter.convert(
axisB
));
/external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_joints_HingeJoint.cpp
209
(JNIEnv * env, jobject object, jlong bodyIdA, jlong bodyIdB, jobject pivotA, jobject axisA, jobject pivotB, jobject
axisB
) {
220
jmeBulletUtil::convert(env,
axisB
, &vec4);
Completed in 20 milliseconds