forked from panda3d/panda3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphysxBoxShape.h
More file actions
86 lines (71 loc) · 2.42 KB
/
physxBoxShape.h
File metadata and controls
86 lines (71 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Filename: physxBoxShape.h
// Created by: enn0x (16Sep09)
//
////////////////////////////////////////////////////////////////////
//
// 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."
//
////////////////////////////////////////////////////////////////////
#ifndef PHYSXBOXSHAPE_H
#define PHYSXBOXSHAPE_H
#include "pandabase.h"
#include "luse.h"
#include "physxShape.h"
#include "physx_includes.h"
class PhysxBoxShapeDesc;
////////////////////////////////////////////////////////////////////
// Class : PhysxBoxShape
// Description : A box shaped collision detection primitive. Each
// shape is owned by the actor which it is attached
// to.
//
// An instance can be created by calling the
// createShape() method of the PhysxActor object that
// will own it, with a PhysxBoxShapeDesc object as the
// parameter, or by adding the shape descriptor to the
// PhysxActorDesc class before creating the actor.
//
// The shape is deleted by calling release() on the
// shape itself.
////////////////////////////////////////////////////////////////////
class EXPCL_PANDAPHYSX PhysxBoxShape : public PhysxShape {
PUBLISHED:
INLINE PhysxBoxShape();
INLINE ~PhysxBoxShape();
void save_to_desc(PhysxBoxShapeDesc &shapeDesc) const;
void set_dimensions(const LVector3f &dimensions);
LVector3f get_dimensions() const;
////////////////////////////////////////////////////////////////////
public:
INLINE NxShape *ptr() const { return (NxShape *)_ptr; };
void link(NxShape *shapePtr);
void unlink();
private:
NxBoxShape *_ptr;
////////////////////////////////////////////////////////////////////
public:
static TypeHandle get_class_type() {
return _type_handle;
}
static void init_type() {
PhysxShape::init_type();
register_type(_type_handle, "PhysxBoxShape",
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 "physxBoxShape.I"
#endif // PHYSXBOXSHAPE_H