lerp   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/core/math.xtm

Implementation

(bind-func lerp
  (lambda (a:double b:double x:double)
    (+ a (* x (- b a)))))


Back to Index

Similar Entries