vec4DataAttribute.I 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // Filename: vec4DataAttribute.I
  2. // Created by: jason (03Aug00)
  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: Vec4DataAttribute::Constructor
  20. // Access: Public
  21. // Description:
  22. ////////////////////////////////////////////////////////////////////
  23. INLINE Vec4DataAttribute::
  24. Vec4DataAttribute() {
  25. }
  26. ////////////////////////////////////////////////////////////////////
  27. // Function: Vec4DataAttribute::Constructor
  28. // Access: Public
  29. // Description:
  30. ////////////////////////////////////////////////////////////////////
  31. INLINE Vec4DataAttribute::
  32. Vec4DataAttribute(const LVecBase4f &value) :
  33. VectorDataAttribute<LPoint4f, LMatrix4f>(value)
  34. {
  35. }