| 1061 | } |
| 1062 | |
| 1063 | inline vec get_normalized3(const vec* pDefaultVec = NULL) const |
| 1064 | { |
| 1065 | vec result(*this); |
| 1066 | result.normalize3(pDefaultVec); |
| 1067 | return result; |
| 1068 | } |
| 1069 | |
| 1070 | inline vec& clamp(T l, T h) |
| 1071 | { |
nothing calls this directly
no test coverage detected