Gets the magnitude of the vector squared. @return the magnitude
()
| 176 | * @return the magnitude |
| 177 | */ |
| 178 | public double lengthSquared() { |
| 179 | return NumberConversions.square(x) + NumberConversions.square(y) + NumberConversions.square(z); |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * Get the distance between this vector and another. The value of this |
no test coverage detected