24class EXPCL_PANDAPHYSX PhysxJointLimitSoftDesc {
27 INLINE PhysxJointLimitSoftDesc();
28 INLINE PhysxJointLimitSoftDesc(
float value,
float restitution,
float spring,
float damping);
29 INLINE ~PhysxJointLimitSoftDesc();
31 void set_value(
float value);
32 void set_restitution(
float restitution);
33 void set_spring(
float spring);
34 void set_damping(
float damping);
36 float get_value()
const;
37 float get_restitution()
const;
38 float get_spring()
const;
39 float get_damping()
const;
42 NxJointLimitSoftDesc _desc;