|
template<typename T > |
basic_color< T > | mn::math::operator+ (const basic_color< T > &a, const basic_color< T > &b) |
|
template<typename T > |
basic_color< T > | mn::math::operator- (const basic_color< T > &a, const basic_color< T > &b) |
|
template<typename T > |
basic_color< T > | mn::math::operator- (const basic_color< T > &c) |
|
template<typename T > |
basic_color< T > | mn::math::operator* (const basic_color< T > &a, const basic_color< T > &b) |
|
template<typename T > |
basic_color< T > | mn::math::operator* (const basic_color< T > &c, const T f) |
|
template<typename T > |
basic_color< T > | mn::math::operator* (const T f, const basic_color< T > &c) |
|
template<typename T > |
basic_color< T > | mn::math::operator/ (const basic_color< T > &a, const basic_color< T > &b) |
|
template<typename T > |
basic_color< T > | mn::math::operator/ (const basic_color< T > &c, const T f) |
|
template<typename T > |
bool | mn::math::operator== (const basic_color< T > &a, const basic_color< T > &b) |
|
template<typename T > |
bool | mn::math::operator!= (const basic_color< T > &a, const basic_color< T > &b) |
|
template<typename T > |
basic_color< T > | mn::math::negate (const basic_color< T > &c) |
| negate More...
|
|
template<typename T > |
T | mn::math::brightness (const basic_color< T > &c) |
| brightness More...
|
|
template<typename T > |
basic_color< T > | mn::math::interpolate (const basic_color< T > &c1, const basic_color< T > &c2, const T p) |
| interpolate More...
|
|
template<typename T > |
basic_color< T > | mn::math::min (const basic_color< T > &c1, const basic_color< T > &c2) |
| Get the min color. More...
|
|
template<typename T > |
basic_color< T > | mn::math::max (const basic_color< T > &c1, const basic_color< T > &c2) |
| Get the max color. More...
|
|
template<typename T > |
basic_color< T > | mn::math::from_yuv (const T y, const T u, const T v) |
| Create a RGBA color object from a yuv. More...
|
|
template<typename T > |
basic_color< T > | mn::math::from_cmy (const T c, const T m, const T y) |
| Create a RGBA color object from a cmy. More...
|
|
template<typename T > |
basic_color< T > | mn::math::from_hsv (const T h, const T s, const T v) |
| Create a RGBA color object from a hsv. More...
|
|