Panda3D
physxVehicleDesc.I
1 // Filename: physxVehicleDesc.I
2 // Created by: enn0x (23Mar10)
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 
16 ////////////////////////////////////////////////////////////////////
17 // Function: PhysxVehicleDesc::Constructor
18 // Access: Published
19 // Description:
20 ////////////////////////////////////////////////////////////////////
21 INLINE PhysxVehicleDesc::
22 PhysxVehicleDesc() {
23 
25 }
26 
27 ////////////////////////////////////////////////////////////////////
28 // Function: PhysxVehicleDesc::Destructor
29 // Access: Published
30 // Description:
31 ////////////////////////////////////////////////////////////////////
32 INLINE PhysxVehicleDesc::
33 ~PhysxVehicleDesc() {
34 
35 }
36 
37 ////////////////////////////////////////////////////////////////////
38 // Function: PhysxVehicleDesc::set_to_default
39 // Access: Published
40 // Description: (re)sets the structure to the default.
41 ////////////////////////////////////////////////////////////////////
42 INLINE void PhysxVehicleDesc::
44 
45  // TODO
46 }
47 
48 ////////////////////////////////////////////////////////////////////
49 // Function: PhysxVehicleDesc::is_valid
50 // Access: Published
51 // Description: Returns true if the descriptor is valid.
52 ////////////////////////////////////////////////////////////////////
53 INLINE bool PhysxVehicleDesc::
54 is_valid() const {
55 
56  return true;
57 }
58 
bool is_valid() const
Returns true if the descriptor is valid.
void set_to_default()
(re)sets the structure to the default.