| 3446 | } |
| 3447 | |
| 3448 | void |
| 3449 | Settings::getSelectionColor(double* r, |
| 3450 | double* g, |
| 3451 | double* b) const |
| 3452 | { |
| 3453 | *r = _selectionColor->getValue(0); |
| 3454 | *g = _selectionColor->getValue(1); |
| 3455 | *b = _selectionColor->getValue(2); |
| 3456 | } |
| 3457 | |
| 3458 | void |
| 3459 | Settings::getInterpolatedColor(double* r, |
no test coverage detected