Panda3D
 All Classes Functions Variables Enumerations
eggCoordinateSystem.I
1 // Filename: eggCoordinateSystem.I
2 // Created by: drose (20Jan99)
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: EggCoordinateSystem::Constructor
19 // Access: Public
20 // Description:
21 ////////////////////////////////////////////////////////////////////
22 INLINE EggCoordinateSystem::
23 EggCoordinateSystem(CoordinateSystem value) {
24  _value = value;
25 }
26 
27 
28 ////////////////////////////////////////////////////////////////////
29 // Function: EggCoordinateSystem::Copy Constructor
30 // Access: Public
31 // Description:
32 ////////////////////////////////////////////////////////////////////
33 INLINE EggCoordinateSystem::
34 EggCoordinateSystem(const EggCoordinateSystem &copy)
35  : EggNode(copy), _value(copy._value) { }
36 
37 
38 ////////////////////////////////////////////////////////////////////
39 // Function: EggCoordinateSystem::set_value
40 // Access: Public
41 // Description:
42 ////////////////////////////////////////////////////////////////////
43 INLINE void EggCoordinateSystem::
44 set_value(CoordinateSystem value) {
45  _value = value;
46 }
47 
48 
49 ////////////////////////////////////////////////////////////////////
50 // Function: EggCoordinateSystem::set_value
51 // Access: Public
52 // Description:
53 ////////////////////////////////////////////////////////////////////
54 INLINE CoordinateSystem EggCoordinateSystem::
55 get_value() const {
56  return _value;
57 }
58 
The <CoordinateSystem> entry at the top of an egg file.
A base class for things that may be directly added into the egg hierarchy.
Definition: eggNode.h:38