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