Panda3D
Loading...
Searching...
No Matches
physxCapsuleForceFieldShapeDesc.h
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 physxCapsuleForceFieldShapeDesc.h
10 * @author enn0x
11 * @date 2009-11-06
12 */
13
14#ifndef PHYSXCAPSULEFORCEFIELDSHAPEDESC_H
15#define PHYSXCAPSULEFORCEFIELDSHAPEDESC_H
16
17#include "pandabase.h"
18
20#include "physx_includes.h"
21
22/**
23 * Descriptor for a capsule force field shape.
24 */
25class EXPCL_PANDAPHYSX PhysxCapsuleForceFieldShapeDesc : public PhysxForceFieldShapeDesc {
26
27PUBLISHED:
28 INLINE PhysxCapsuleForceFieldShapeDesc();
29 INLINE ~PhysxCapsuleForceFieldShapeDesc();
30
31 INLINE void set_to_default();
32 INLINE bool is_valid() const;
33
34 void set_radius(float radius);
35 void set_height(float height);
36
37 float get_radius() const;
38 float get_height() const;
39
40public:
41 NxForceFieldShapeDesc *ptr() const { return (NxForceFieldShapeDesc *)&_desc; };
42 NxCapsuleForceFieldShapeDesc _desc;
43};
44
46
47#endif // PHYSXCAPSULEFORCEFIELDSHAPEDESC_H
bool is_valid() const
Returns true if the descriptor is valid.
void set_to_default()
(re)sets the structure to the default.
float get_radius() const
The radius of the capsule's hemispherical ends and its trunk.
void set_height(float height)
Sets the distance between the two hemispherical ends of the capsule.
float get_height() const
The distance between the two hemispherical ends of the capsule.
void set_radius(float radius)
Sets the radius of the capsule's hemispherical ends and its trunk.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.