2017

Table Of Contents
Arguments:
Number is the base number to be raised.
Power is the exponent to which the base number is raised.
Examples:
pow(3, 2) returns 9.
pow(4, 3) returns 64.
pow(5, 0) returns 1.
pow(-2.5, 4) returns 39.0625.
sqrt
Returns the square root of a given number.
sqrt(Number)Syntax:
Arguments:
Number is the non-negative number of which you want the square root.
Examples:
sqrt(25) returns 5.
sqrt(abs(-25)) returns 5.
sqrt(0) returns 0.
max
Returns the larger of two given numbers.
max(Number1, Number2)Syntax:
Arguments:
Number1 and Number2 are numbers of which you want to find the maximum value.
Examples:
max(5.9, 8.1) returns 8.1.
max(-14, -32) returns -14.
max(axis1.position.x, axis2.position.x) returns the larger of axis1.position.x or axis2.po-
sition.x.
min
Returns the smaller of two given numbers.
min(Number1, Number2)Syntax:
Arguments:
Number1 and Number2 are numbers of which you want to find the minimum value.
Examples:
min(5.9, 8.1) returns 5.9.
1256 | Chapter 24 Animating Keyframes