You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.2 KiB

  1. ///////////////////////////////////////////////////////////////////////////////////////////////////
  2. // OpenGL Mathematics Copyright (c) 2005 - 2013 G-Truc Creation (www.g-truc.net)
  3. ///////////////////////////////////////////////////////////////////////////////////////////////////
  4. // Created : 2006-01-16
  5. // Updated : 2008-10-07
  6. // Licence : This source is under MIT License
  7. // File : glm/gtx/vector_access.inl
  8. ///////////////////////////////////////////////////////////////////////////////////////////////////
  9. namespace glm
  10. {
  11. template <typename valType>
  12. GLM_FUNC_QUALIFIER void set
  13. (
  14. detail::tvec2<valType>& v,
  15. valType const & x,
  16. valType const & y
  17. )
  18. {
  19. v.x = x;
  20. v.y = y;
  21. }
  22. template <typename valType>
  23. GLM_FUNC_QUALIFIER void set
  24. (
  25. detail::tvec3<valType>& v,
  26. valType const & x,
  27. valType const & y,
  28. valType const & z
  29. )
  30. {
  31. v.x = x;
  32. v.y = y;
  33. v.z = z;
  34. }
  35. template <typename valType>
  36. GLM_FUNC_QUALIFIER void set
  37. (
  38. detail::tvec4<valType>& v,
  39. valType const & x,
  40. valType const & y,
  41. valType const & z,
  42. valType const & w
  43. )
  44. {
  45. v.x = x;
  46. v.y = y;
  47. v.z = z;
  48. v.w = w;
  49. }
  50. }//namespace glm