#include <vector.h>
A color consisting of three components R, G and B.
Public Types | |
template<typename U > | |
using | Rebind = Col3< U, STRIDE > |
using | VectorStrideType = std::integral_constant< Int, STRIDE > |
using | ValueType = T |
using | ValueTypeParam = typename ByValueParam< T >::type |
using | Unstrided = Col3< T, 1 > |
using | BoolType = decltype(T()==T()) |
Public Member Functions | |
Col3 () | |
Col3 (ValueTypeParam in) | |
Col3 (ValueTypeParam ix, ValueTypeParam iy, ValueTypeParam iz) | |
template<typename T2 , Int S2> | |
Col3 (const Col3< T2, S2 > &v) | |
template<typename T2 , Int S2> | |
Col3 (const Vec3< T2, S2 > &v) | |
template<typename T2 , Int S2> | |
Col3 (const Col4< T2, S2 > &v) | |
template<Int S2> | |
Col3 (const Col3< T, S2 > &v) | |
Col3 (ENUM_DONT_INITIALIZE v) | |
MAXON_IMPLICIT | Col3 (const typename std::conditional< STRIDE==1, DummyParamType, Col3 >::type &src) |
Col3 & | operator= (const typename std::conditional< STRIDE==1, DummyParamType, Col3 >::type &src) |
T & | operator[] (Int l) |
ValueTypeParam | operator[] (Int l) const |
template<typename T2 , Int S2> | |
Col3 & | operator+= (const Col3< T2, S2 > &v) |
Col3 & | operator+= (const Col3 &v) |
template<typename T2 , Int S2> | |
Col3 & | operator-= (const Col3< T2, S2 > &v) |
Col3 & | operator-= (const Col3 &v) |
template<typename T2 , Int S2> | |
Col3 & | operator*= (const Col3< T2, S2 > &v) |
Col3 & | operator*= (const Col3 &v) |
Col3 & | operator*= (ValueTypeParam s) |
Col3 & | operator/= (ValueTypeParam s) |
Unstrided | operator* (ValueTypeParam s) const |
template<typename S > | |
Col3< typename MultiplicativePromotion< T, S, std::is_scalar< S >::value >::type, 1 > | operator* (S s) const |
Unstrided | operator/ (ValueTypeParam s) const |
Unstrided | operator* (const Col3 &v) const |
Unstrided | operator+ (const Col3 &v) const |
Unstrided | operator- (const Col3 &v) const |
Unstrided | operator- () const |
template<typename T2 , Int S2> | |
BoolType | operator== (const Col3< T2, S2 > &v) const |
BoolType | operator== (const Col3 &v) const |
template<typename T2 , Int S2> | |
BoolType | operator!= (const Col3< T2, S2 > &v) const |
BoolType | operator!= (const Col3 &v) const |
UInt | GetHashCode () const |
BoolType | IsEqual (const Col3 &other, ValueTypeParam epsilon) const |
BoolType | IsZero () const |
void | SetZero () |
T | GetAverage () const |
T | GetSum () const |
void | ClampMin (const Col3 &other=Col3()) |
void | ClampMax (const Col3 &other) |
Unstrided | Clamp01 () const |
String | ToString (const FormatStatement *formatStatement) const |
const Vec3< T, STRIDE > & | GetVector () const |
Vec3< T, STRIDE > & | GetVector () |
T | GetMin () const |
T | GetMax () const |
Unstrided | GetRightRotated (Int rots) const |
template<typename T2 > | |
Col3 & | operator*= (const Mat3< T2 > &m) |
Static Public Member Functions | |
static const Col3 & | NullValue () |
Public Attributes | |
union { | |
T r | |
T _xpadding [STRIDE] | |
}; | |
union { | |
T g | |
T _ypadding [STRIDE] | |
}; | |
union { | |
T b | |
T _zpadding [STRIDE] | |
}; | |
Friends | |
Unstrided | operator* (ValueTypeParam s, const Col3 &v) |
Unstrided | Abs (const Col3 &v1) |
Unstrided | Min (const Col3 &a, const Col3 &other) |
Unstrided | Max (const Col3 &a, const Col3 &other) |
void | SetMin (Col3 &a, const Col3 &other) |
void | SetMax (Col3 &a, const Col3 &other) |
using VectorStrideType = std::integral_constant<Int, STRIDE> |
using ValueType = T |
using ValueTypeParam = typename ByValueParam<T>::type |
using BoolType = decltype(T() == T()) |
The type returned by comparisons. If the template argument for T is a SIMD type, this will be a SIMD type, too, which contains the per-element results.
Col3 | ( | ) |
Initializes all vector components with 0.0.
|
explicit |
Initializes all vector components with a scalar.
|
explicit |
Initializes all vector components individually.
|
explicit |
Skips initialization of vector (for better speed)
MAXON_IMPLICIT Col3 | ( | const typename std::conditional< STRIDE==1, DummyParamType, Col3< T, STRIDE > >::type & | src | ) |
Col3& operator= | ( | const typename std::conditional< STRIDE==1, DummyParamType, Col3< T, STRIDE > >::type & | src | ) |
T& operator[] | ( | Int | l | ) |
Accesses vector component: index 0 is 'r', index 1 is 'g', index 2 is 'b'. All other values must not be used and will crash.
ValueTypeParam operator[] | ( | Int | l | ) | const |
Accesses vector component: index 0 is 'r', index 1 is 'g', index 2 is 'b'. All other values must not be used and will crash.
Col3& operator*= | ( | ValueTypeParam | s | ) |
Multiplies each vector component by a scalar.
Col3& operator/= | ( | ValueTypeParam | s | ) |
Divides each vector component by a scalar. The passed argument is checked for 0.0.
Unstrided operator* | ( | ValueTypeParam | s | ) | const |
Multiplies each vector component by a scalar.
Col3<typename MultiplicativePromotion<T, S, std::is_scalar<S>::value>::type, 1> operator* | ( | S | s | ) | const |
Multiplies each vector component by a scalar.
Unstrided operator/ | ( | ValueTypeParam | s | ) | const |
Divides each vector component by a scalar. The scalar value is tested for 0.0.
Unstrided operator- | ( | ) | const |
Negates vector v.
UInt GetHashCode | ( | ) | const |
BoolType IsEqual | ( | const Col3< T, STRIDE > & | other, |
ValueTypeParam | epsilon | ||
) | const |
Tests component-wise if the difference is no bigger than 'epsilon'.
BoolType IsZero | ( | ) | const |
Checks if each component is zero.
void SetZero | ( | ) |
Sets all components to zero.
T GetAverage | ( | ) | const |
Calculates the average value of 'r', 'g' and 'b'.
T GetSum | ( | ) | const |
Calculates the sum of 'r', 'g' and 'b'.
Set the minimum of each component.
Unstrided Clamp01 | ( | ) | const |
Returns a vector that is clamped to the range [0.0 .. 1.0].
String ToString | ( | const FormatStatement * | formatStatement | ) | const |
Returns a readable string of the content.
[in] | formatStatement | Nullptr or additional formatting instruction. See also format_float. |
T GetMin | ( | void | ) | const |
Returns the minimum of 'r', 'g' and 'b'.
T GetMax | ( | void | ) | const |
Returns the maximum of 'r', 'g' and 'b'.
Returns a vector where the components have been rotated to the right (in the usual (r, g, b)-representation). E.g., with a value of 1 for rots, the result will be (b, r, g).
[in] | rots | Number of rotations, may be negative. The result depends only on the number modulo 3. |
|
static |
|
friend |
Multiplies each vector component by a scalar.
returns the vector with absolute value for each entry
[in] | v1 | input vector to work on |
Calculates the minimum of each component.
Calculates the maximum of each component.
Set the minimum of each component.
Set the maximum of each component.
T r |
T _xpadding[STRIDE] |
union { ... } |
T g |
T _ypadding[STRIDE] |
union { ... } |
T b |
T _zpadding[STRIDE] |
union { ... } |