eggCoordinateSystem.I 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // Filename: eggCoordinateSystem.I
  2. // Created by: drose (20Jan99)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved
  8. //
  9. // All use of this software is subject to the terms of the Panda 3d
  10. // Software license. You should have received a copy of this license
  11. // along with this source code; you will also find a current copy of
  12. // the license at http://www.panda3d.org/license.txt .
  13. //
  14. // To contact the maintainers of this program write to
  15. // [email protected] .
  16. //
  17. ////////////////////////////////////////////////////////////////////
  18. ////////////////////////////////////////////////////////////////////
  19. // Function: EggCoordinateSystem::Constructor
  20. // Access: Public
  21. // Description:
  22. ////////////////////////////////////////////////////////////////////
  23. INLINE EggCoordinateSystem::
  24. EggCoordinateSystem(CoordinateSystem value) {
  25. _value = value;
  26. }
  27. ////////////////////////////////////////////////////////////////////
  28. // Function: EggCoordinateSystem::Copy Constructor
  29. // Access: Public
  30. // Description:
  31. ////////////////////////////////////////////////////////////////////
  32. INLINE EggCoordinateSystem::
  33. EggCoordinateSystem(const EggCoordinateSystem &copy)
  34. : EggNode(copy), _value(copy._value) { }
  35. ////////////////////////////////////////////////////////////////////
  36. // Function: EggCoordinateSystem::set_value
  37. // Access: Public
  38. // Description:
  39. ////////////////////////////////////////////////////////////////////
  40. INLINE void EggCoordinateSystem::
  41. set_value(CoordinateSystem value) {
  42. _value = value;
  43. }
  44. ////////////////////////////////////////////////////////////////////
  45. // Function: EggCoordinateSystem::set_value
  46. // Access: Public
  47. // Description:
  48. ////////////////////////////////////////////////////////////////////
  49. INLINE CoordinateSystem EggCoordinateSystem::
  50. get_value() const {
  51. return _value;
  52. }