| 54 | // Loose classifiers for our colored guide lines |
| 55 | static bool is_red(QColor c) { return c.red() >= 200 && c.green() <= 60 && c.blue() <= 60; } |
| 56 | static bool is_yellow(QColor c) { return c.red() >= 200 && c.green() >= 170 && c.blue() <= 60; } |
| 57 | |
| 58 | /* ---------------------------------------------------------------------------- |
| 59 | * Invert behavior vs Yaw+180 (Equirect input) |