| 228 | |
| 229 | template <class T> |
| 230 | static Color3<T> |
| 231 | sub(Color3<T> &color, const Color3<T> &color2) |
| 232 | { |
| 233 | MATH_EXC_ON; |
| 234 | return color - color2; |
| 235 | } |
| 236 | |
| 237 | template <class T> |
| 238 | static Color3<T> |
nothing calls this directly
no outgoing calls
no test coverage detected