| 286 | } |
| 287 | |
| 288 | void Color::fromRgb(const double r, const double g, const double b, const double a) |
| 289 | { |
| 290 | this->r = r; |
| 291 | this->g = g; |
| 292 | this->b = b; |
| 293 | this->a = a; |
| 294 | } |
| 295 | |
| 296 | void Color::fromHsv(int H, double S, double V) |
| 297 | { |
no outgoing calls
no test coverage detected