| 287 | |
| 288 | template <class T> |
| 289 | static Color4<T> |
| 290 | addT(Color4<T> &v, T a) |
| 291 | { |
| 292 | MATH_EXC_ON; |
| 293 | Color4<T> w(v.r + a, v.g + a, v.b + a, v.a + a); |
| 294 | return w; |
| 295 | } |
| 296 | |
| 297 | template <class T> |
| 298 | static const Color4<T> & |
nothing calls this directly
no outgoing calls
no test coverage detected