| 265 | |
| 266 | template <class T> |
| 267 | static Color4<T> |
| 268 | add(Color4<T> &color, const Color4<T> &color2) |
| 269 | { |
| 270 | MATH_EXC_ON; |
| 271 | return color + color2; |
| 272 | } |
| 273 | |
| 274 | template <class T> |
| 275 | static Color4<T> |
nothing calls this directly
no outgoing calls
no test coverage detected