OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rotAllowed
(Results
1 - 5
of
5
) sorted by null
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/
btGeneric6DofSpring2Constraint.cpp
523
//
rotAllowed
is a bit of a magic from the original 6dof. The calculation of it here is something that imitates the original behavior as much as possible.
526
int
rotAllowed
= 1; // rotations around orthos to current axis (it is used only when one of the body is static)
538
rotAllowed
= 0;
540
row += get_limit_motor_info2(&limot, transA,transB,linVelA,linVelB,angVelA,angVelB, info, row, axis, 0,
rotAllowed
);
617
void btGeneric6DofSpring2Constraint::calculateJacobi(btRotationalLimitMotor2 * limot, const btTransform& transA,const btTransform& transB, btConstraintInfo2 *info, int srow, btVector3& ax1, int rotational, int
rotAllowed
)
639
if(m_hasStaticBody && (!
rotAllowed
))
654
btConstraintInfo2 *info, int row, btVector3& ax1, int rotational,int
rotAllowed
)
663
calculateJacobi(limot,transA,transB,info,srow,ax1,rotational,
rotAllowed
);
682
calculateJacobi(limot,transA,transB,info,srow,ax1,rotational,
rotAllowed
);
703
calculateJacobi(limot,transA,transB,info,srow,ax1,rotational,
rotAllowed
);
[
all
...]
btGeneric6DofConstraint.cpp
651
int
rotAllowed
= 1; // rotations around orthos to current axis
654
rotAllowed
= 0;
656
row += get_limit_motor_info2(&limot, transA,transB,linVelA,linVelB,angVelA,angVelB, info, row, axis, 0,
rotAllowed
);
776
btConstraintInfo2 *info, int row, btVector3& ax1, int rotational,int
rotAllowed
)
817
if(m_hasStaticBody && (!
rotAllowed
))
btGeneric6DofConstraint.h
549
btConstraintInfo2 *info, int row, btVector3& ax1, int rotational, int
rotAllowed
= false);
btGeneric6DofSpring2Constraint.h
317
void calculateJacobi(btRotationalLimitMotor2* limot, const btTransform& transA,const btTransform& transB, btConstraintInfo2* info, int srow, btVector3& ax1, int rotational, int
rotAllowed
);
320
btConstraintInfo2* info, int row, btVector3& ax1, int rotational, int
rotAllowed
= false);
/external/libgdx/extensions/gdx-bullet/jni/swig-src/dynamics/com/badlogic/gdx/physics/bullet/dynamics/
btGeneric6DofConstraint.java
188
public int get_limit_motor_info2(btRotationalLimitMotor limot, Matrix4 transA, Matrix4 transB, Vector3 linVelA, Vector3 linVelB, Vector3 angVelA, Vector3 angVelB, btTypedConstraint.btConstraintInfo2 info, int row, Vector3 ax1, int rotational, int
rotAllowed
) {
189
return DynamicsJNI.btGeneric6DofConstraint_get_limit_motor_info2__SWIG_0(swigCPtr, this, btRotationalLimitMotor.getCPtr(limot), limot, transA, transB, linVelA, linVelB, angVelA, angVelB, btTypedConstraint.btConstraintInfo2.getCPtr(info), info, row, ax1, rotational,
rotAllowed
);
Completed in 101 milliseconds