| 700 | } |
| 701 | |
| 702 | inline vec get_normalized3(const vec* pDefaultVec = NULL) const |
| 703 | { |
| 704 | vec result(*this); |
| 705 | result.normalize3(pDefaultVec); |
| 706 | return result; |
| 707 | } |
| 708 | |
| 709 | inline vec& clamp(T l, T h) |
| 710 | { |
nothing calls this directly
no test coverage detected