IsNaN() public static méthode

Query if 'vector' is NaN.
public static IsNaN ( Vector vector ) : bool
vector Vector The vector.
Résultat bool
Exemple #1
0
 /// <summary>A Vector extension method that query if 'vector' is na n.</summary>
 /// <param name="vector">The vector to act on.</param>
 /// <returns>true if na n, false if not.</returns>
 public static bool IsNaN(this Vector vector)
 {
     return(Vector.IsNaN(vector));
 }