68 lines
1.4 KiB
C++
68 lines
1.4 KiB
C++
/**
|
|
* PANDA 3D SOFTWARE
|
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
*
|
|
* All use of this software is subject to the terms of the revised BSD
|
|
* license. You should have received a copy of this license along
|
|
* with this source code in a file named "LICENSE."
|
|
*
|
|
* @file physxConvexShape.h
|
|
* @author enn0x
|
|
* @date 2009-10-14
|
|
*/
|
|
|
|
#ifndef PHYSXCONVEXSHAPE_H
|
|
#define PHYSXCONVEXSHAPE_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#include "physxShape.h"
|
|
#include "physx_includes.h"
|
|
|
|
class PhysxConvexShapeDesc;
|
|
|
|
/**
|
|
* A shapes which is used to represent an instance of an convex mesh.
|
|
*/
|
|
class EXPCL_PANDAPHYSX PhysxConvexShape : public PhysxShape {
|
|
|
|
PUBLISHED:
|
|
INLINE PhysxConvexShape();
|
|
INLINE ~PhysxConvexShape();
|
|
|
|
void save_to_desc(PhysxConvexShapeDesc &shapeDesc) const;
|
|
|
|
public:
|
|
INLINE NxShape *ptr() const { return (NxShape *)_ptr; };
|
|
|
|
void link(NxShape *shapePtr);
|
|
void unlink();
|
|
|
|
private:
|
|
NxConvexShape *_ptr;
|
|
|
|
public:
|
|
static TypeHandle get_class_type() {
|
|
return _type_handle;
|
|
}
|
|
static void init_type() {
|
|
PhysxShape::init_type();
|
|
register_type(_type_handle, "PhysxConvexShape",
|
|
PhysxShape::get_class_type());
|
|
}
|
|
virtual TypeHandle get_type() const {
|
|
return get_class_type();
|
|
}
|
|
virtual TypeHandle force_init_type() {
|
|
init_type();
|
|
return get_class_type();
|
|
}
|
|
|
|
private:
|
|
static TypeHandle _type_handle;
|
|
};
|
|
|
|
#include "physxConvexShape.I"
|
|
|
|
#endif // PHYSXCONVEXSHAPE_H
|