(mathArray)
| 69166 | return this.lengthSquared(); |
| 69167 | } |
| 69168 | distance(mathArray) { |
| 69169 | return Math.sqrt(this.distanceSquared(mathArray)); |
| 69170 | } |
| 69171 | distanceSquared(mathArray) { |
| 69172 | let length = 0; |
| 69173 | for(let i = 0; i < this.ELEMENTS; ++i){ |
no test coverage detected