Méthode | Description | |
---|---|---|
IsNumber ( object obj ) : bool |
Used to determine if a specified object is a number type
|
|
Lerp ( double a0, double a1, float t ) : double |
Precise method which guarantees v = v1 when t = 1, Mathf doesn't support doubles so this one will
|
public static IsNumber ( object obj ) : bool | ||
obj | object | The object to evaluate if it is a number |
Résultat | bool |
public static Lerp ( double a0, double a1, float t ) : double | ||
a0 | double | |
a1 | double | |
t | float | |
Résultat | double |