Return the length squared of this vector. @return the length squared
()
| 570 | * @return the length squared |
| 571 | */ |
| 572 | @SafeToToString |
| 573 | public double lengthSquared() { |
| 574 | return ((x * x) + (y * y)); |
| 575 | } |
| 576 | |
| 577 | /** |
| 578 | * Return the distance between <code>this</code> and <code>v</code>. |
no outgoing calls
no test coverage detected