hi all, i find the fluxus interpolation functions are a bit illogical:
(define a #(1 2 3)) (define b #(4 5 6)) (vlerp a b 0) -> #(4 5 6) (vlerp a b 1) -> #(1 2 3) while the expected output would be: (vlerp a b 0) -> #(1 2 3) (vlerp a b 1) -> #(4 5 6) the same applies to (lerp), (mlerp) and (vlerp-tangent) probably.is there any opposition against changing their behaviour to the expected one?
best, gabor
