diff --git a/hyperpoint.cpp b/hyperpoint.cpp index 6431f99a..fc1e4ee6 100644 --- a/hyperpoint.cpp +++ b/hyperpoint.cpp @@ -1209,4 +1209,8 @@ EX int bucketer(hyperpoint h) { return dx; } +EX hyperpoint lerp(hyperpoint a0, hyperpoint a1, ld x) { + return a0 + (a1-a0) * x; + } + }