OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pivotInB
(Results
1 - 4
of
4
) sorted by null
/external/libgdx/extensions/gdx-bullet/jni/swig-src/dynamics/com/badlogic/gdx/physics/bullet/dynamics/
btHingeAccumulatedAngleConstraint.java
62
public btHingeAccumulatedAngleConstraint(btRigidBody rbA, btRigidBody rbB, Vector3 pivotInA, Vector3
pivotInB
, Vector3 axisInA, Vector3 axisInB, boolean useReferenceFrameA) {
63
this(DynamicsJNI.new_btHingeAccumulatedAngleConstraint__SWIG_0(btRigidBody.getCPtr(rbA), rbA, btRigidBody.getCPtr(rbB), rbB, pivotInA,
pivotInB
, axisInA, axisInB, useReferenceFrameA), true);
66
public btHingeAccumulatedAngleConstraint(btRigidBody rbA, btRigidBody rbB, Vector3 pivotInA, Vector3
pivotInB
, Vector3 axisInA, Vector3 axisInB) {
67
this(DynamicsJNI.new_btHingeAccumulatedAngleConstraint__SWIG_1(btRigidBody.getCPtr(rbA), rbA, btRigidBody.getCPtr(rbB), rbB, pivotInA,
pivotInB
, axisInA, axisInB), true);
btPoint2PointConstraint.java
79
public btPoint2PointConstraint(btRigidBody rbA, btRigidBody rbB, Vector3 pivotInA, Vector3
pivotInB
) {
80
this(DynamicsJNI.new_btPoint2PointConstraint__SWIG_0(btRigidBody.getCPtr(rbA), rbA, btRigidBody.getCPtr(rbB), rbB, pivotInA,
pivotInB
), true);
btHingeConstraint.java
62
public btHingeConstraint(btRigidBody rbA, btRigidBody rbB, Vector3 pivotInA, Vector3
pivotInB
, Vector3 axisInA, Vector3 axisInB, boolean useReferenceFrameA) {
63
this(DynamicsJNI.new_btHingeConstraint__SWIG_0(btRigidBody.getCPtr(rbA), rbA, btRigidBody.getCPtr(rbB), rbB, pivotInA,
pivotInB
, axisInA, axisInB, useReferenceFrameA), true);
66
public btHingeConstraint(btRigidBody rbA, btRigidBody rbB, Vector3 pivotInA, Vector3
pivotInB
, Vector3 axisInA, Vector3 axisInB) {
67
this(DynamicsJNI.new_btHingeConstraint__SWIG_1(btRigidBody.getCPtr(rbA), rbA, btRigidBody.getCPtr(rbB), rbB, pivotInA,
pivotInB
, axisInA, axisInB), true);
/external/libgdx/extensions/gdx-bullet/jni/src/extras/Serialize/BulletWorldImporter/
btWorldImporter.cpp
543
btVector3 pivotInA,
pivotInB
;
545
pivotInB
.deSerializeDouble(p2pData->m_pivotInB);
546
constraint = createPoint2PointConstraint(*rbA,*rbB,pivotInA,
pivotInB
);
763
btVector3 pivotInA,
pivotInB
;
765
pivotInB
.deSerializeFloat(p2pData->m_pivotInB);
766
constraint = createPoint2PointConstraint(*rbA,*rbB,pivotInA,
pivotInB
);
[
all
...]
Completed in 59 milliseconds