Panda3D
Loading...
Searching...
No Matches
physxSphereShape.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 physxSphereShape.cxx
10 * @author enn0x
11 * @date 2009-09-16
12 */
13
14#include "physxSphereShape.h"
16
17TypeHandle PhysxSphereShape::_type_handle;
18
19/**
20 *
21 */
22void PhysxSphereShape::
23link(NxShape *shapePtr) {
24
25 _ptr = shapePtr->isSphere();
26 _ptr->userData = this;
27 _error_type = ET_ok;
28
29 set_name(shapePtr->getName());
30
31 PhysxActor *actor = (PhysxActor *)_ptr->getActor().userData;
32 actor->_shapes.add(this);
33}
34
35/**
36 *
37 */
38void PhysxSphereShape::
39unlink() {
40
41 _ptr->userData = nullptr;
42 _error_type = ET_released;
43
44 PhysxActor *actor = (PhysxActor *)_ptr->getActor().userData;
45 actor->_shapes.remove(this);
46}
47
48/**
49 * Saves the state of the shape object to a descriptor.
50 */
52save_to_desc(PhysxSphereShapeDesc &shapeDesc) const {
53
54 nassertv(_error_type == ET_ok);
55 _ptr->saveToDesc(shapeDesc._desc);
56}
57
58/**
59 * Sets the sphere radius.
60 */
62set_radius(float radius) {
63
64 nassertv(_error_type == ET_ok);
65 _ptr->setRadius(radius);
66}
67
68/**
69 * Returns the radius of the sphere.
70 */
72get_radius() const {
73
74 nassertr(_error_type == ET_ok, 0.0f);
75 return _ptr->getRadius();
76}
Actors are the main simulation objects.
Definition physxActor.h:44
void set_name(const char *name)
Sets a name string for this object.
Descriptor class for PhysxSphereShape.
float get_radius() const
Returns the radius of the sphere.
void save_to_desc(PhysxSphereShapeDesc &shapeDesc) const
Saves the state of the shape object to a descriptor.
void set_radius(float radius)
Sets the sphere radius.
TypeHandle is the identifier used to differentiate C++ class types.
Definition typeHandle.h:81
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.