ENGLISH: Move the mouse around and Scratchie will tween around to it! РУССКИЙ: Перемещайте мышь, и Скретчи будет анимироваться вокруг нее!
ENGLISH: Lerping (Linear Interpolation) is a function used in math for to smoothly (or not) translate from a number to another, it is calculated by ( A + ( ( B - A ) * T ) ). Let's say T = 0.1, A = 0, and B = 100, running that calculation will return 10. Here's another example: T = 0.5 A = 50 B = -46 The result is 2. РУССКИЙ: Лерпинг (линейная интерполяция) — это функция, используемая в программировании и требующая математических вычислений. Она вычисляется по формуле ( A + ( ( B - A ) * T ) ). Допустим, T = 0,1, A = 0 и B = 100, и выполнение этого расчета вернет 10. Вот еще один пример: Т = 0,5 А = 50 Б = -46 Результат 2. For a better explanation, go to (https://en.wikipedia.org/wiki/Linear_interpolation)