diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-04-22 22:44:50 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-04-22 22:44:50 +0300 |
commit | 76f3fb4567f26372c14087dfac7d95032815fe37 (patch) | |
tree | 5308f37617e4c8503708b80508c122d49784c2dd | |
parent | 727dc577270e0dbbd7110236e129bb4e4dfcd099 (diff) | |
download | applause2-76f3fb4567f26372c14087dfac7d95032815fe37.tar.gz |
applause.lua: fixed link to RTcmix
-rw-r--r-- | applause.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applause.lua b/applause.lua index 074afca..d15d6b5 100644 --- a/applause.lua +++ b/applause.lua @@ -2477,7 +2477,7 @@ end -- @fixme Could v1 and v2 be StreamableNumbers? function curve(v1, alpha, t, v2) -- Derived from RTcmix' "curve" table - -- See http://www.music.columbia.edu/cmc/Rtcmix/docs/scorefile/maketable.html#curve + -- See https://rtcmix.org/reference/scorefile/maketable.html#curve v2 = v2 or 0 if not alpha or alpha == 0 then return line(v1, t, v2) end |