packages feed

hsc3-0.21: Help/Ugen/hypot.help.hs

-- hypot
let x = mouseX kr 0 0.1 Linear 0.1
    y = mouseY kr 0 0.1 Linear 0.1
in sinOsc ar 440 0 * hypot x y

-- hypot ; object travels 200 meters in 6 secs (=120kph) passing 10 meters from the listener
let x = 10
    y = lfSaw kr (1 / 6) 0 * 100
    d = hypot x y
    a = 10 / (squared d)
    v = slope d
    r = (344 - v) / 344 -- the speed of sound is 344 meters/sec
in fSinOsc ar (1000 * r) 0 * a

-- hypot
let x = 10
    y = lfSaw kr (1 / 6) 0 * 100
    d = hypot x y
    a = 40 / (squared d)
    s = rlpf (fSinOsc ar 200 0 * lfPulse ar 31.3 0 0.4) 400 0.3
in delayL s (110 / 344) (d / 344) * a