Returns if a vector is normalized @return whether the vector is normalised
()
| 409 | * @return whether the vector is normalised |
| 410 | */ |
| 411 | public boolean isNormalized() { |
| 412 | return Math.abs(this.lengthSquared() - 1) < getEpsilon(); |
| 413 | } |
| 414 | |
| 415 | /** |
| 416 | * Rotates the vector around the x axis. |
no test coverage detected