37 lines
907 B
C++
37 lines
907 B
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 physxBoxControllerDesc.cxx
|
|
* @author enn0x
|
|
* @date 2009-09-22
|
|
*/
|
|
|
|
#include "physxBoxControllerDesc.h"
|
|
#include "physxManager.h"
|
|
|
|
/**
|
|
* Sets the dimensions of the box.
|
|
*
|
|
* The dimensions are the 'radii' of the box, meaning 1/2 extents in x
|
|
* dimension, 1/2 extents in y dimension, 1/2 extents in z dimension.
|
|
*/
|
|
void PhysxBoxControllerDesc::
|
|
set_extents(const LVector3f &extents) {
|
|
|
|
_desc.extents = PhysxManager::vec3_to_nxVec3(extents);
|
|
}
|
|
|
|
/**
|
|
* Returns the dimensions of the box.
|
|
*/
|
|
LVector3f PhysxBoxControllerDesc::
|
|
get_extents() const {
|
|
|
|
return PhysxManager::nxVec3_to_vec3(_desc.extents);
|
|
}
|