|
|
typedef Color3< float > | Color3f |
| | RGB color class with 3 float components.
|
| |
|
typedef Color4< float > | Color4f |
| | RGBA color class with 4 float components.
|
| |
|
typedef Color3< double > | Color3d |
| | RGB color class with 3 double components.
|
| |
|
typedef Color4< double > | Color4d |
| | RGBA color class with 4 double components.
|
| |
|
template<typename T > |
| Color3< T > | Abs (Color3< T > const &c) |
| | Returns a color with abs applied to all components.
|
| |
|
template<typename T > |
| Color3< T > | Exp (Color3< T > const &c) |
| | Returns a color with exponential applied to all components.
|
| |
|
template<typename T > |
| Color3< T > | Exp2 (Color3< T > const &c) |
| | Returns a color with base-2 exponential applied to all components.
|
| |
|
template<typename T > |
| Color3< T > | Log (Color3< T > const &c) |
| | Returns a color with natural logarithm applied to all components.
|
| |
|
template<typename T > |
| Color3< T > | Log2 (Color3< T > const &c) |
| | Returns a color with base-2 logarithm applied to all components.
|
| |
|
template<typename T > |
| Color3< T > | Log10 (Color3< T > const &c) |
| | Returns a color with base-10 logarithm applied to all components.
|
| |
|
template<typename T > |
| Color3< T > | Sqrt (Color3< T > const &c) |
| | Returns a color with square root applied to all components.
|
| |
|
template<typename T > |
| Color3< T > | Pow (Color3< T > const &c, T exponent) |
| | Returns a color with square root applied to all components.
|
| |
|
template<typename T > |
| Color4< T > | Abs (Color4< T > const &c) |
| | Returns a color with abs applied to all components.
|
| |
|
template<typename T > |
| Color4< T > | Exp (Color4< T > const &c) |
| | Returns a color with exponential applied to all components.
|
| |
|
template<typename T > |
| Color4< T > | Exp2 (Color4< T > const &c) |
| | Returns a color with base-2 exponential applied to all components.
|
| |
|
template<typename T > |
| Color4< T > | Log (Color4< T > const &c) |
| | Returns a color with natural logarithm applied to all components.
|
| |
|
template<typename T > |
| Color4< T > | Log2 (Color4< T > const &c) |
| | Returns a color with base-2 logarithm applied to all components.
|
| |
|
template<typename T > |
| Color4< T > | Log10 (Color4< T > const &c) |
| | Returns a color with base-10 logarithm applied to all components.
|
| |
|
template<typename T > |
| Color4< T > | Sqrt (Color4< T > const &c) |
| | Returns a color with square root applied to all components.
|
| |
|
template<typename T > |
| Color4< T > | Pow (Color4< T > const &c, T exponent) |
| | Returns a color with square root applied to all components.
|
| |