40 lines
698 B
Plaintext
40 lines
698 B
Plaintext
/**
|
|
* 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 physxJointLimitDesc.I
|
|
* @author enn0x
|
|
* @date 2009-09-28
|
|
*/
|
|
|
|
/**
|
|
*
|
|
*/
|
|
INLINE PhysxJointLimitDesc::
|
|
PhysxJointLimitDesc() {
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
INLINE PhysxJointLimitDesc::
|
|
PhysxJointLimitDesc(float value, float restitution, float hardness) {
|
|
|
|
_desc.value = value;
|
|
_desc.restitution = restitution;
|
|
_desc.hardness = hardness;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
INLINE PhysxJointLimitDesc::
|
|
~PhysxJointLimitDesc() {
|
|
|
|
}
|