Returns a new vector that is the result of normalizing this vector by the L 2 norm @return a normalized version of this vector
()
| 676 | * @return a normalized version of this vector |
| 677 | */ |
| 678 | public Vec normalized() |
| 679 | { |
| 680 | Vec toRet = this.getThisSide(null); |
| 681 | toRet.normalize(); |
| 682 | return toRet; |
| 683 | } |
| 684 | |
| 685 | /** |
| 686 | * Mutates this vector to be normalized by the L<sub>2</sub> norm |
nothing calls this directly
no test coverage detected