Returns true if vector has one or more components is not a number (NaN).
| 188 | /// Returns true if vector has one or more components is not a number (NaN). |
| 189 | /// </summary> |
| 190 | bool IsNaN() const |
| 191 | { |
| 192 | return isnan(X) || isnan(Y); |
| 193 | } |
| 194 | |
| 195 | /// <summary> |
| 196 | /// Returns true if vector has one or more components equal to +/- infinity. |
no test coverage detected