|
inlinestaticconstexpr |
Linear interpolation between two fixed-point values.
Performs linear interpolation (lerp) between start and end values using the formula: result = start + (end - start) * t
The interpolation follows this pattern:
Common uses:
start | Starting value of the interpolation |
end | Ending value of the interpolation |
t | Interpolation factor in range [0,1] |