| 190 | |
| 191 | template <class T> |
| 192 | static Color3<T> |
| 193 | add(Color3<T> &color, const Color3<T> &color2) |
| 194 | { |
| 195 | MATH_EXC_ON; |
| 196 | return color + color2; |
| 197 | } |
| 198 | |
| 199 | template <class T> |
| 200 | static Color3<T> |
nothing calls this directly
no outgoing calls
no test coverage detected