Panda3D
physxCapsuleForceFieldShape.cxx
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file physxCapsuleForceFieldShape.cxx
10  * @author enn0x
11  * @date 2009-11-15
12  */
13 
16 
17 TypeHandle PhysxCapsuleForceFieldShape::_type_handle;
18 
19 /**
20  *
21  */
22 void PhysxCapsuleForceFieldShape::
23 link(NxForceFieldShape *shapePtr) {
24 
25  _ptr = shapePtr->isCapsule();
26  _ptr->userData = this;
27  _error_type = ET_ok;
28 
29  set_name(shapePtr->getName());
30 
31  PhysxForceFieldShapeGroup *group = (PhysxForceFieldShapeGroup *)_ptr->getShapeGroup().userData;
32  group->_shapes.add(this);
33 }
34 
35 /**
36  *
37  */
38 void PhysxCapsuleForceFieldShape::
39 unlink() {
40 
41  _ptr->userData = nullptr;
42  _error_type = ET_released;
43 
44  PhysxForceFieldShapeGroup *group = (PhysxForceFieldShapeGroup *)_ptr->getShapeGroup().userData;
45  group->_shapes.remove(this);
46 }
47 
48 /**
49  * Saves the state of the shape object to a descriptor.
50  */
53 
54  nassertv(_error_type == ET_ok);
55  _ptr->saveToDesc(shapeDesc._desc);
56 }
57 
58 /**
59  * Alters the radius of the capsule.
60  */
62 set_radius(float radius) {
63 
64  nassertv(_error_type == ET_ok);
65  _ptr->setRadius(radius);
66 }
67 
68 /**
69  * Alters the height of the capsule.
70  */
72 set_height(float height) {
73 
74  nassertv(_error_type == ET_ok);
75  _ptr->setHeight(height);
76 }
77 
78 /**
79  * Retrieves the radius of the capsule.
80  */
82 get_radius() const {
83 
84  nassertr(_error_type == ET_ok, 0.0f);
85  return _ptr->getRadius();
86 }
87 
88 /**
89  * Retrieves the height of the capsule.
90  */
92 get_height() const {
93 
94  nassertr(_error_type == ET_ok, 0.0f);
95  return _ptr->getHeight();
96 }
float get_radius() const
Retrieves the radius of the capsule.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
void save_to_desc(PhysxCapsuleForceFieldShapeDesc &shapeDesc) const
Saves the state of the shape object to a descriptor.
void set_name(const char *name)
Sets a name string for this object.
void set_height(float height)
Alters the height of the capsule.
float get_height() const
Retrieves the height of the capsule.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
TypeHandle is the identifier used to differentiate C++ class types.
Definition: typeHandle.h:81
Descriptor for a capsule force field shape.
void set_radius(float radius)
Alters the radius of the capsule.