| 693 | } |
| 694 | |
| 695 | inline vec get_normalized(const vec* pDefaultVec = NULL) const |
| 696 | { |
| 697 | vec result(*this); |
| 698 | result.normalize(pDefaultVec); |
| 699 | return result; |
| 700 | } |
| 701 | |
| 702 | inline vec get_normalized3(const vec* pDefaultVec = NULL) const |
| 703 | { |
no test coverage detected