Abs | Devuelve el valor absoluto de f. |
Acos | Devuelve el arco coseno de f - el ángulo en radianes cuyo coseno es f . |
Approximately | Compara dos valores de coma flotante si son similares. |
Asin | Devuelve el arco seno de f - el ángulo en radianes cuyo seno es f. |
Atan | Devuelve el arco - tangente del f - el ángulo en radianes cuya tangente es f. |
Atan2 | Devuelve el ángulo en radianes cuya Tan es y/x . |
Ceil | Devuelve el menor entero, mayor o igual a f. |
CeilToInt | Devuelve el menor entero, mayor o igual a f. |
Clamp | Satura un valor entre dos valores float mínimo y máximo. |
Clamp01 | Satura un valor entre 0 y 1 y devuelve el valor. |
ClosestPowerOfTwo | Devuelve el exponente más cercano de dos valores. |
Cos | Devuelve el coseno del ángulo f en radianes. |
DeltaAngle | Calcula la diferencia más pequeña entre dos ángulos. |
Exp | Retorna e elevado a una potencia especificada. |
Floor | Returns the largest integer smaller to or equal to f. |
FloorToInt | Returns the largest integer smaller to or equal to f. |
GammaToLinearSpace | Converts the given value from gamma (sRGB) to linear color space. |
InverseLerp | Calculates the linear parameter t that produces the interpolant value within the range [a, b]. |
IsPowerOfTwo | Devuelve verdadero si el valor es potencia de dos. |
Lerp | Linearly interpolates between a and b by t. |
LerpAngle | Same as Lerp but makes sure the values interpolate correctly when they wrap around 360 degrees. |
LerpUnclamped | Linearly interpolates between a and b by t. |
LinearToGammaSpace | Converts the given value from linear to gamma (sRGB) color space. |
Log | Returns the logarithm of a specified number in a specified base. |
Log10 | Devuelve el logaritmo en base 10 de un número especificado. |
Max | Devuelve el mayor de dos o más valores. |
Min | Devuelve el menor de dos o más valores. |
MoveTowards | Mueve un valor current a target. |
MoveTowardsAngle | Same as MoveTowards but makes sure the values interpolate correctly when they wrap around 360 degrees. |
NextPowerOfTwo | Devuelve el siguiente valor que sea potencia de dos. |
PerlinNoise | Genera ruido Perlin 2D. |
PingPong | PingPongs the value t, so that it is never larger than length and never smaller than 0. |
Pow | Devuelve f elevado a la potencia de p. |
Repeat | Loops the value t, so that it is never larger than length and never smaller than 0. |
Round | Devuelve f redondeado al entero más cercano. |
RoundToInt | Devuelve f redondeado al entero más cercano. |
Sign | Devuelve el signo de f. |
Sin | Devuelve el seno del ángulo f en radianes. |
SmoothDamp | Gradually changes a value towards a desired goal over time. |
SmoothDampAngle | Gradually changes an angle given in degrees towards a desired goal angle over time. |
SmoothStep | Interpolates between min and max with smoothing at the limits. |
Sqrt | Devuelve la raíz cuadrada de f. |
Tan | Devuelve la tangente del ángulo f en radianes. |