|
| ColorRGBA | kanzi::componentWiseMax (ColorRGBA v1, ColorRGBA v2) |
| | Calculates the component wise maximum for all color elements and returns the resulting color. More...
|
| |
| ColorRGBA | kanzi::componentWiseMin (ColorRGBA v1, ColorRGBA v2) |
| | Calculates the component wise minimum for all color elements and returns the resulting color. More...
|
| |
| ColorRGBA | kanzi::componentWiseMultiply (ColorRGBA v1, ColorRGBA v2) |
| | Does component wise multiply for all color elements and returns the resulting color. More...
|
| |
| ColorRGBA | kanzi::operator+ (ColorRGBA v1, ColorRGBA v2) |
| | Adds two colors and returns the sum. More...
|
| |
| ColorRGBA | kanzi::operator- (ColorRGBA v1, ColorRGBA v2) |
| | Subtracts two colors and returns the difference. More...
|
| |
| ColorRGBA | kanzi::operator* (ColorRGBA v, float scalar) |
| | Multiplies all color elements with a scalar and returns the resulting color. More...
|
| |
| ColorRGBA | kanzi::operator* (float scalar, ColorRGBA v) |
| | Multiplies all color elements with a scalar and returns the resulting color. More...
|
| |
| ColorRGBA | kanzi::operator/ (ColorRGBA v, float scalar) |
| | Divides all color elements with a scalar and returns the resulting color. More...
|
| |
| ColorRGBA | kanzi::operator- (ColorRGBA v) |
| | Negates all color elements and returns the resulting color. More...
|
| |
| ColorRGBA | kanzi::operator+ (ColorRGBA v) |
| | Unary plus, doesn't do anything and returns the resulting color. More...
|
| |
| bool | kanzi::operator== (ColorRGBA v1, ColorRGBA v2) |
| | Compares two colors for equality. More...
|
| |
| bool | kanzi::operator!= (ColorRGBA v1, ColorRGBA v2) |
| | Compares two colors for inequality. More...
|
| |
| float | kanzi::dotProduct (ColorRGBA v1, ColorRGBA v2) |
| | Calculates the dot product of two colors. More...
|
| |