Constructor which takes R,G,B,A
| 19 | |
| 20 | // Constructor which takes R,G,B,A |
| 21 | Color::Color(unsigned char Red, unsigned char Green, unsigned char Blue, unsigned char Alpha) : |
| 22 | red(static_cast<double>(Red)), |
| 23 | green(static_cast<double>(Green)), |
| 24 | blue(static_cast<double>(Blue)), |
| 25 | alpha(static_cast<double>(Alpha)) { } |
| 26 | |
| 27 | // Constructor which takes 4 existing Keyframe curves |
| 28 | Color::Color(Keyframe Red, Keyframe Green, Keyframe Blue, Keyframe Alpha) : |
nothing calls this directly
no outgoing calls
no test coverage detected