(speed)
| 213 | } |
| 214 | |
| 215 | function Osc(speed) { |
| 216 | |
| 217 | var frame = 0; |
| 218 | |
| 219 | this.current = function(x) { |
| 220 | frame += speedInputValue * speed; |
| 221 | return Math.sin(frame + x * speed * 10); |
| 222 | }; |
| 223 | } |
| 224 | |
| 225 | |
| 226 | //read and accept user input image |
nothing calls this directly
no outgoing calls
no test coverage detected