You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
Quenty
changed the title
Refactor MapNumber and LerpNumber to Map and Lerp, respectively
Refactor qMath.MapNumber and qMath.LerpNumber to qMath.Map and qMath.Lerp, respectively
Jan 5, 2018
functionMath.CompoundTransparency(a, b)
-- For when you need something to have a Transparency of a Transparency.-- For example, a Ripple whose "Color" is Black with 0.46 Transparency (for gray)-- that would, if it were any other color, have 0.8 or 0.9 Transparency-- @param number a-- @param number breturna+b-a*bendfunctionMath.Lerp(Start, Finish, Alpha)
-- Return intermediate value between Start and Finish-- @param number Start-- @param number Finish-- @param number Alpha [0, 1]returnStart+Alpha* (Finish-Start)
end
No description provided.
The text was updated successfully, but these errors were encountered: