Re: [CM] generators

2017-12-11 Thread bil
The fm part is normally imitating fm in an oscil. If you have (with-sound (:play #t) (let ((gen (make-oscil 300))) (do ((i 0 (+ i 1))) ((= i 2)) (outa i (* .5 (oscil gen .01)) the .01 fm is just a constant added to the phase-increment which changes the (constant)

[CM] generators

2017-12-11 Thread James Hearon
Hi, I've been using the generators in generators.scm for a while, and enjoy making sound with them, but for the life of me I cannot seem to understand how they work. I'm confused about the lambda part and the use of fm. What is fm doing? I'd be grateful if someone could explain that. Such