 |
|
 |
|
4.9.7 Curve functions
|
|
|
linear step
linstep( min, max, parameter ) = linear interpolation if parameter is between min and max
Example:
linstep( 0, 90, Effector_1.PitchX )
linstep( 0, 90, Effector_1.PitchX )
linstep( 0, 90, Effector_1.PitchX )
smooth step
smoothstep( min, max, parameter ) = smooth interpolation if parameter is between min and max
Example:
smoothstep( 0, 90, Effector_1.PitchX )
smoothstep( 0, 90, Effector_1.PitchX )
smoothstep( 0, 90, Effector_1.PitchX )
hermite
hermite( start, end, tan1, tan2, parameter )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|