SMOOTHSTEP

THE BOX'S MAIN HELP:
This function returns 0 if X < A; 1 if X >= B;
otherwise a smooth S-curve interpolation between 0 and 1.

A (input):
Must be a float.
The minimum value, this function returns 0 if X < A.

B (input):
Must be a float.
The maximum value, this function returns 1 if X >= B.

X (input):
Must be a float.
The value to be tested.

OUT (output):
This function returns 0 if X < A; 1 if X >= B;
otherwise a smooth S-curve interpolation between 0 and 1.

<-- BACK TO Interpolation

© Copyright 1996,1998 Cinema Graphics Inc. All Rights reserved.