Panda3D
 All Classes Functions Variables Enumerations
bulletTranslationalLimitMotor.cxx
1 // Filename: bulletTranslationalLimitMotor.cxx
2 // Created by: enn0x (03Mar13)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #include "bulletTranslationalLimitMotor.h"
16 
17 ////////////////////////////////////////////////////////////////////
18 // Function: BulletTranslationalLimitMotor::Constructor
19 // Access: Public
20 // Description:
21 ////////////////////////////////////////////////////////////////////
22 BulletTranslationalLimitMotor::
23 BulletTranslationalLimitMotor(btTranslationalLimitMotor &motor)
24  : _motor(motor) {
25 
26 }
27 
28 ////////////////////////////////////////////////////////////////////
29 // Function: BulletTranslationalLimitMotor::Copy Constructor
30 // Access: Published
31 // Description:
32 ////////////////////////////////////////////////////////////////////
33 BulletTranslationalLimitMotor::
34 BulletTranslationalLimitMotor(const BulletTranslationalLimitMotor &copy)
35  : _motor(copy._motor) {
36 
37 }
38 
39 ////////////////////////////////////////////////////////////////////
40 // Function: BulletTranslationalLimitMotor::Destructor
41 // Access: Published
42 // Description:
43 ////////////////////////////////////////////////////////////////////
44 BulletTranslationalLimitMotor::
45 ~BulletTranslationalLimitMotor() {
46 
47 }
48 
Rotation Limit structure for generic joints.