| 211 | |
| 212 | template <class T> |
| 213 | static Color3<T> |
| 214 | addT(Color3<T> &v, T a) |
| 215 | { |
| 216 | MATH_EXC_ON; |
| 217 | Color3<T> w(v.x + a, v.y + a, v.z + a); |
| 218 | return w; |
| 219 | } |
| 220 | |
| 221 | template <class T> |
| 222 | static const Color3<T> & |
nothing calls this directly
no outgoing calls
no test coverage detected