Returns if a vector is normalized @return whether the vector is normalised
()
| 425 | * @return whether the vector is normalised |
| 426 | */ |
| 427 | public boolean isNormalized() { |
| 428 | return Math.abs(this.lengthSquared() - 1) < getEpsilon(); |
| 429 | } |
| 430 | |
| 431 | /** |
| 432 | * Rotates the vector around the x axis. |