00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef PHYSXPRISMATICJOINT_H
00016 #define PHYSXPRISMATICJOINT_H
00017
00018 #include "pandabase.h"
00019
00020 #include "physxJoint.h"
00021 #include "physx_includes.h"
00022
00023 class PhysxPrismaticJointDesc;
00024
00025
00026
00027
00028
00029
00030
00031 class EXPCL_PANDAPHYSX PhysxPrismaticJoint : public PhysxJoint {
00032
00033 PUBLISHED:
00034 INLINE PhysxPrismaticJoint();
00035 INLINE ~PhysxPrismaticJoint();
00036
00037 void save_to_desc(PhysxPrismaticJointDesc &jointDesc) const;
00038 void load_from_desc(const PhysxPrismaticJointDesc &jointDesc);
00039
00040
00041 public:
00042 INLINE NxJoint *ptr() const { return (NxJoint *)_ptr; };
00043
00044 void link(NxJoint *jointPtr);
00045 void unlink();
00046
00047 private:
00048 NxPrismaticJoint *_ptr;
00049
00050
00051 public:
00052 static TypeHandle get_class_type() {
00053 return _type_handle;
00054 }
00055 static void init_type() {
00056 PhysxJoint::init_type();
00057 register_type(_type_handle, "PhysxPrismaticJoint",
00058 PhysxJoint::get_class_type());
00059 }
00060 virtual TypeHandle get_type() const {
00061 return get_class_type();
00062 }
00063 virtual TypeHandle force_init_type() {
00064 init_type();
00065 return get_class_type();
00066 }
00067
00068 private:
00069 static TypeHandle _type_handle;
00070 };
00071
00072 #include "physxPrismaticJoint.I"
00073
00074 #endif // PHYSXPRISMATICJOINT_H