Panda3D
 All Classes Functions Variables Enumerations
physxConvexMesh.I
1 // Filename: physxConvexMesh.I
2 // Created by: enn0x (13Oct09)
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 ////////////////////////////////////////////////////////////////////
18 // Function: PhysxConvexMesh::Constructor
19 // Access: Public
20 // Description:
21 ////////////////////////////////////////////////////////////////////
22 INLINE PhysxConvexMesh::
23 PhysxConvexMesh() : PhysxObject() {
24 
25 }
26 
27 ////////////////////////////////////////////////////////////////////
28 // Function: PhysxConvexMesh::Destructor
29 // Access: Public
30 // Description:
31 ////////////////////////////////////////////////////////////////////
32 INLINE PhysxConvexMesh::
33 ~PhysxConvexMesh() {
34 
35 }
36 
37 ////////////////////////////////////////////////////////////////////
38 // Function: PhysxConvexMesh::ls
39 // Access: Published
40 // Description:
41 ////////////////////////////////////////////////////////////////////
42 INLINE void PhysxConvexMesh::
43 ls() const {
44 
45  ls(nout);
46 }
47 
48 ////////////////////////////////////////////////////////////////////
49 // Function: PhysxConvexMesh::ls
50 // Access: Published
51 // Description:
52 ////////////////////////////////////////////////////////////////////
53 INLINE void PhysxConvexMesh::
54 ls(ostream &out, int indent_level) const {
55 
56  indent(out, indent_level) << get_type().get_name()
57  << " (at 0x" << this << ")\n";
58 }
59 
string get_name(TypedObject *object=(TypedObject *) NULL) const
Returns the name of the type.
Definition: typeHandle.I:132