lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


2010/6/21 Adriano Saballa das Chagas <adrianosbl@hotmail.com>:
> math.between(0, 1) = 0.5
> math.between(0, 5) = 2.5
> math.between(8, 4) = 6
> math.between(3, 6) = 4.5
> math.between(8, 7) = 7.5
> math.between(0, 90) = 45
>

That's simply the average of two numbers, trivially implemented as
math.abs(x+y)/2.

~Jonathan