Cubic Interpolation
PureCubicInterpCubic Hermite interpolation between P0 and P1 using tangents T0 and T1.
Type: Pure (no side effects)
Category: Fortuna|Math & Numeric
Keywords: math & numeric
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| P0 | float | — | P0 parameter |
| T0 | float | — | T0 parameter |
| P1 | float | — | P1 parameter |
| T1 | float | — | T1 parameter |
| Alpha | float 0-1 | — | Alpha parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| ReturnValue | float | ReturnValue output |
Example Use Cases
Example 1
Smooth keyframe interpolation in a custom animation system.
Example 2
High-quality curve fitting for procedural paths.