open_toontown_panda3d/panda/src/bullet/bulletConeShape.I

68 lines
2.1 KiB
Plaintext

// Filename: bulletConeShape.I
// Created by: enn0x (24Jan10)
//
////////////////////////////////////////////////////////////////////
//
// 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."
//
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
// Function: BulletConeShape::Destructor
// Access: Published
// Description:
////////////////////////////////////////////////////////////////////
INLINE BulletConeShape::
~BulletConeShape() {
delete _shape;
}
////////////////////////////////////////////////////////////////////
// Function: BulletConeShape::Copy Constructor
// Access: Published
// Description:
////////////////////////////////////////////////////////////////////
INLINE BulletConeShape::
BulletConeShape(const BulletConeShape &copy) :
_shape(copy._shape) {
}
////////////////////////////////////////////////////////////////////
// Function: BulletConeShape::Copy Assignment Operator
// Access: Published
// Description:
////////////////////////////////////////////////////////////////////
INLINE void BulletConeShape::
operator = (const BulletConeShape &copy) {
_shape = copy._shape;
}
////////////////////////////////////////////////////////////////////
// Function: BulletConeShape::get_radius
// Access: Published
// Description:
////////////////////////////////////////////////////////////////////
INLINE PN_stdfloat BulletConeShape::
get_radius() const {
return (PN_stdfloat)_shape->getRadius();
}
////////////////////////////////////////////////////////////////////
// Function: BulletConeShape::get_height
// Access: Published
// Description:
////////////////////////////////////////////////////////////////////
INLINE PN_stdfloat BulletConeShape::
get_height() const {
return (PN_stdfloat)_shape->getHeight();
}