returns true if any component of this Double.isNaN @return is any component NaN ?
()
| 1503 | * @return is any component NaN ? |
| 1504 | */ |
| 1505 | public boolean isNaN() { |
| 1506 | return Double.isNaN(x) || Double.isNaN(y) || Double.isNaN(z); |
| 1507 | } |
| 1508 | |
| 1509 | /** |
| 1510 | * returns an independent copy of this object |
no outgoing calls
no test coverage detected