Panda3D
 All Classes Functions Variables Enumerations
eggCoordinateSystem.I
00001 // Filename: eggCoordinateSystem.I
00002 // Created by:  drose (20Jan99)
00003 //
00004 ////////////////////////////////////////////////////////////////////
00005 //
00006 // PANDA 3D SOFTWARE
00007 // Copyright (c) Carnegie Mellon University.  All rights reserved.
00008 //
00009 // All use of this software is subject to the terms of the revised BSD
00010 // license.  You should have received a copy of this license along
00011 // with this source code in a file named "LICENSE."
00012 //
00013 ////////////////////////////////////////////////////////////////////
00014 
00015 
00016 
00017 ////////////////////////////////////////////////////////////////////
00018 //     Function: EggCoordinateSystem::Constructor
00019 //       Access: Public
00020 //  Description:
00021 ////////////////////////////////////////////////////////////////////
00022 INLINE EggCoordinateSystem::
00023 EggCoordinateSystem(CoordinateSystem value) {
00024   _value = value;
00025 }
00026 
00027 
00028 ////////////////////////////////////////////////////////////////////
00029 //     Function: EggCoordinateSystem::Copy Constructor
00030 //       Access: Public
00031 //  Description:
00032 ////////////////////////////////////////////////////////////////////
00033 INLINE EggCoordinateSystem::
00034 EggCoordinateSystem(const EggCoordinateSystem &copy)
00035   : EggNode(copy), _value(copy._value) { }
00036 
00037 
00038 ////////////////////////////////////////////////////////////////////
00039 //     Function: EggCoordinateSystem::set_value
00040 //       Access: Public
00041 //  Description:
00042 ////////////////////////////////////////////////////////////////////
00043 INLINE void EggCoordinateSystem::
00044 set_value(CoordinateSystem value) {
00045   _value = value;
00046 }
00047 
00048 
00049 ////////////////////////////////////////////////////////////////////
00050 //     Function: EggCoordinateSystem::set_value
00051 //       Access: Public
00052 //  Description:
00053 ////////////////////////////////////////////////////////////////////
00054 INLINE CoordinateSystem EggCoordinateSystem::
00055 get_value() const {
00056   return _value;
00057 }
00058 
 All Classes Functions Variables Enumerations