Returns the length of this vector. @return the length of this vector
()
| 170 | * @return the length of this vector |
| 171 | */ |
| 172 | public final double length() { |
| 173 | return Math.sqrt(this.x * this.x + this.y * this.y + this.z * this.z); |
| 174 | } |
| 175 | |
| 176 | |
| 177 | /** |
no test coverage detected