Gets the magnitude of the vector squared. @return the magnitude
()
| 169 | * @return the magnitude |
| 170 | */ |
| 171 | public double lengthSquared() { |
| 172 | return NumberConversions.square(x) + NumberConversions.square(y) + NumberConversions.square(z); |
| 173 | } |
| 174 | |
| 175 | /** |
| 176 | * Get the distance between this vector and another. The value of this |
no test coverage detected