Nodes > Math > Common > Smoothstep

Returns a 0-1 value smoothly interpolated from 0 at the lower boundary, A, to 1 at the higher boundary, B, based on the given Ratio. Input values can be from any range.
Inputs
| Name | Type | Description |
|---|---|---|
| A | float | The beginning value of the range. |
| B | float | The end value of the range. |
| Ratio | float | How far to interpolate within the range of A to B. |
Outputs
| Name | Type | Description |
|---|---|---|
| smoothstep( A, B, Ratio ) | float | Smoothly interpolated value, value returns ranging from 0 to 1. |
Was this page helpful?