summaryrefslogtreecommitdiff
path: root/lib/Scale.ck
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-09-11 16:22:07 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-09-11 16:22:07 +0200
commited15304dbbfc62b3da2b5c7bf5770efa1ffa6457 (patch)
tree2589de2875df3632efc93dc2a401491048e6b78e /lib/Scale.ck
parent0a5cb89744cbd737b73e2687fd546952caae0661 (diff)
downloaddigitale-debutanten-ed15304dbbfc62b3da2b5c7bf5770efa1ffa6457.tar.gz
added comments clarifing that scaling target ranges may be inversed
Diffstat (limited to 'lib/Scale.ck')
-rw-r--r--lib/Scale.ck5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Scale.ck b/lib/Scale.ck
index 9eeea0a..c6b1a24 100644
--- a/lib/Scale.ck
+++ b/lib/Scale.ck
@@ -14,6 +14,11 @@ public class Scale extends Chubgraph {
fun void
__update() /* pseudo-private */
{
+ /*
+ * Note that "__out_from" can be greater than "__out_to", resulting in the
+ * desired inversion of scaling
+ * (just like __out_from < __out_to and -SAMPLE was used).
+ */
(__out_to-__out_from)/(__in_to-__in_from) => inlet.gain;
__out_from - __in_from*inlet.gain() => __base.next;
}