|
| | AColor ()=default |
| |
| | AColor (const AColor &)=default |
| |
| | AColor (AColor &&)=default |
| |
| AColor & | operator= (const AColor &)=default |
| |
| AColor & | operator= (AColor &&)=default |
| |
| | AColor (float R, float G, float B, float A=1.0f) |
| |
| | AColor (double R, double G, double B, double A=1.0) |
| |
| | AColor (int R, int G, int B, int A=0) |
| |
| | AColor (const Color &c, float alph=1.0f) |
| |
| | AColor (uint32_t rgb, float alph=1.0f) |
| |
| | AColor (const Point4 &p) |
| |
| | AColor (float af[4]) |
| |
| | AColor (const BMM_Color_24 &c) |
| |
| | AColor (const BMM_Color_32 &c) |
| |
| | AColor (const BMM_Color_48 &c) |
| |
| | AColor (const BMM_Color_64 &c) |
| |
| | AColor (const BMM_Color_fl &c) |
| |
| void | Black () |
| |
| void | White () |
| |
| void | ClampMax () |
| |
| void | ClampMin () |
| |
| void | ClampMinMax () |
| |
| float & | operator[] (int i) |
| |
| const float & | operator[] (int i) const |
| |
| | operator float * () |
| |
| | operator const float * () const |
| |
| | operator BMM_Color_24 () |
| |
| | operator BMM_Color_32 () |
| |
| | operator BMM_Color_48 () |
| |
| | operator BMM_Color_64 () |
| |
| | operator BMM_Color_fl () |
| |
| uint32_t | toRGB () |
| |
| | operator Point4 () |
| |
| AColor | operator- () const |
| |
| AColor | operator+ () const |
| |
| AColor & | operator-= (const AColor &) |
| |
| AColor & | operator+= (const AColor &) |
| |
| AColor & | operator*= (float) |
| |
| AColor & | operator/= (float) |
| |
| AColor & | operator*= (const AColor &) |
| |
| int | operator== (const AColor &p) const |
| |
| int | operator!= (const AColor &p) const |
| |
| AColor | operator- (const AColor &) const |
| |
| AColor | operator+ (const AColor &) const |
| |
| AColor | operator/ (const AColor &) const |
| |
| AColor | operator* (const AColor &) const |
| |
| AColor | operator^ (const AColor &) const |
| |