Panda3D
Loading...
Searching...
No Matches
bulletConeShape.I
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 bulletConeShape.I
10 * @author enn0x
11 * @date 2010-01-24
12 */
13
14/**
15 * Only used by make_from_bam.
16 */
17INLINE BulletConeShape::
18BulletConeShape() :
19 _shape(nullptr),
20 _radius(0),
21 _height(0),
22 _up(X_up) {
23}
24
25/**
26 *
27 */
28INLINE BulletConeShape::
29~BulletConeShape() {
30
31 delete _shape;
32}
33
34/**
35 * Returns the radius that was passed into the constructor.
36 */
37INLINE PN_stdfloat BulletConeShape::
38get_radius() const {
39 return _radius;
40}
41
42/**
43 * Returns the height that was passed into the constructor.
44 */
45INLINE PN_stdfloat BulletConeShape::
46get_height() const {
47 return _height;
48}
get_radius
Returns the radius that was passed into the constructor.
get_height
Returns the height that was passed into the constructor.