25class EXPCL_PANDAPHYSX PhysxJointDriveDesc :
public PhysxEnums {
28 INLINE PhysxJointDriveDesc();
29 INLINE PhysxJointDriveDesc(
float sping,
float damping,
float forceLimit);
30 INLINE ~PhysxJointDriveDesc();
32 void set_drive_type(PhysxD6JointDriveType type);
33 void set_spring(
float spring);
34 void set_damping(
float damping);
35 void set_force_limit(
float limit);
37 PhysxD6JointDriveType get_drive_type()
const;
38 float get_spring()
const;
39 float get_damping()
const;
40 float get_force_limit()
const;
43 NxJointDriveDesc _desc;