| 3426 | } |
| 3427 | |
| 3428 | void |
| 3429 | Settings::getBaseColor(double* r, |
| 3430 | double* g, |
| 3431 | double* b) const |
| 3432 | { |
| 3433 | *r = _baseColor->getValue(0); |
| 3434 | *g = _baseColor->getValue(1); |
| 3435 | *b = _baseColor->getValue(2); |
| 3436 | } |
| 3437 | |
| 3438 | void |
| 3439 | Settings::getRaisedColor(double* r, |
no test coverage detected