Return the length squared of this vector. @return the length squared
()
| 1025 | * @return the length squared |
| 1026 | */ |
| 1027 | @SafeToToString |
| 1028 | public double lengthSquared() { |
| 1029 | return x * x + y * y + z * z; |
| 1030 | } |
| 1031 | |
| 1032 | /** |
| 1033 | * Return the length of this vector. |
no outgoing calls
no test coverage detected