Returns the length of this vector. @return the length of this vector
()
| 112 | * @return the length of this vector |
| 113 | */ |
| 114 | public final float length() { |
| 115 | return (float) Math.sqrt(this.x * this.x + this.y * this.y); |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Returns the squared length of this vector. |