Panda3D
eggCoordinateSystem.I
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file eggCoordinateSystem.I
10  * @author drose
11  * @date 1999-01-20
12  */
13 
14 /**
15  *
16  */
17 INLINE EggCoordinateSystem::
18 EggCoordinateSystem(CoordinateSystem value) {
19  _value = value;
20 }
21 
22 
23 /**
24  *
25  */
26 INLINE EggCoordinateSystem::
27 EggCoordinateSystem(const EggCoordinateSystem &copy)
28  : EggNode(copy), _value(copy._value) { }
29 
30 
31 /**
32  *
33  */
34 INLINE void EggCoordinateSystem::
35 set_value(CoordinateSystem value) {
36  _value = value;
37 }
38 
39 
40 /**
41  *
42  */
43 INLINE CoordinateSystem EggCoordinateSystem::
44 get_value() const {
45  return _value;
46 }
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:35