open_toontown_panda3d/panda/src/physx/physxCapsuleControllerDesc.cxx

51 lines
1.0 KiB
C++

/**
* 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."
*
* @file physxCapsuleControllerDesc.cxx
* @author enn0x
* @date 2009-09-22
*/
#include "physxCapsuleControllerDesc.h"
/**
* Sets the radius of the capsule's hemispherical ends and its trunk.
*/
void PhysxCapsuleControllerDesc::
set_radius(float radius) {
_desc.radius = radius;
}
/**
* Sets the distance between the two hemispherical ends of the capsule.
*/
void PhysxCapsuleControllerDesc::
set_height(float height) {
_desc.height = height;
}
/**
* The radius of the capsule's hemispherical ends and its trunk.
*/
float PhysxCapsuleControllerDesc::
get_radius() const {
return _desc.radius;
}
/**
* The distance between the two hemispherical ends of the capsule.
*/
float PhysxCapsuleControllerDesc::
get_height() const {
return _desc.height;
}