col3.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Copyright 2009-2021 Intel Corporation
  2. // SPDX-License-Identifier: Apache-2.0
  3. #pragma once
  4. #include "math.h"
  5. namespace embree
  6. {
  7. ////////////////////////////////////////////////////////////////////////////////
  8. /// RGB Color Class
  9. ////////////////////////////////////////////////////////////////////////////////
  10. template<typename T> struct Col3
  11. {
  12. T r, g, b;
  13. ////////////////////////////////////////////////////////////////////////////////
  14. /// Construction
  15. ////////////////////////////////////////////////////////////////////////////////
  16. __forceinline Col3 ( ) { }
  17. __forceinline Col3 ( const Col3& other ) { r = other.r; g = other.g; b = other.b; }
  18. __forceinline Col3& operator=( const Col3& other ) { r = other.r; g = other.g; b = other.b; return *this; }
  19. __forceinline explicit Col3 (const T& v) : r(v), g(v), b(v) {}
  20. __forceinline Col3 (const T& r, const T& g, const T& b) : r(r), g(g), b(b) {}
  21. ////////////////////////////////////////////////////////////////////////////////
  22. /// Constants
  23. ////////////////////////////////////////////////////////////////////////////////
  24. __forceinline Col3 (ZeroTy) : r(zero) , g(zero) , b(zero) {}
  25. __forceinline Col3 (OneTy) : r(one) , g(one) , b(one) {}
  26. __forceinline Col3 (PosInfTy) : r(pos_inf), g(pos_inf), b(pos_inf) {}
  27. __forceinline Col3 (NegInfTy) : r(neg_inf), g(neg_inf), b(neg_inf) {}
  28. };
  29. /*! output operator */
  30. template<typename T> __forceinline embree_ostream operator<<(embree_ostream cout, const Col3<T>& a) {
  31. return cout << "(" << a.r << ", " << a.g << ", " << a.b << ")";
  32. }
  33. /*! default template instantiations */
  34. typedef Col3<unsigned char> Col3uc;
  35. typedef Col3<float > Col3f;
  36. }