JASS Help

MathRealLerp

native MathRealLerp takes [[[real|real.html]]] a, [[[real|real.html]]] b, [[[real|real.html]]] t returns [[[real|real.html]]]

Интерполирует значение в диапазоне [a, b] на основании параметра t.

function [[[main|main.html]]] takes [[[nothing|nothing.html]]] returns [[[nothing|nothing.html]]] call ConsolePrint([[[R2S|r2s.html]]](MathRealLerp(10, 20, 0))) // 10.000 call ConsolePrint([[[R2S|r2s.html]]](MathRealLerp(10, 20, .5))) // 15.000 call ConsolePrint([[[R2S|r2s.html]]](MathRealLerp(10, 20, 1))) // 20.000 endfunction
Last modified: 22 October 2024