00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef PHYSXJOINTLIMITDESC_H
00016 #define PHYSXJOINTLIMITDESC_H
00017
00018 #include "pandabase.h"
00019
00020 #include "physx_includes.h"
00021
00022
00023
00024
00025
00026 class PhysxJointLimitDesc {
00027
00028 PUBLISHED:
00029 INLINE PhysxJointLimitDesc();
00030 INLINE PhysxJointLimitDesc(float value, float restitution, float hardness);
00031 INLINE ~PhysxJointLimitDesc();
00032
00033 void set_value(float value);
00034 void set_restitution(float restitution);
00035 void set_hardness(float hardness);
00036
00037 float get_value() const;
00038 float get_restitution() const;
00039 float get_hardness() const;
00040
00041 public:
00042 NxJointLimitDesc _desc;
00043 };
00044
00045 #include "physxJointLimitDesc.I"
00046
00047 #endif // PHYSXJOINTLIMITDESC_H