oscillators

the finest javascript oscillators

Usage no npm install needed!

<script type="module">
  import oscillators from 'https://cdn.skypack.dev/oscillators';
</script>

README

Oscillators

Oscillators // pass the time // and oh how often

Useful for DSP, and with Audio Javascript modules such as

npm install oscillators

usage

osc.sine

creates sine waves

osc.saw

creates saw waves

osc.square

creates square waves

osc.triangle

creates triangle waves

osc.saw_i

creates inverted saw waves

osc.triangle_s

creates probably something silly

example

var  oz = require('oscillators')
,    frequency = 100000
function sineWave(time){ // given a time domain
  oz.sine(time, frequency)  // returns sinewave at given frequency 
}

talk to aliens

var  oz = require('oscillators');

function sineWave(time){ // given a time domain
  oz.sine(time * os.sine(time, osc.sine(time, 10)), 440 * osc.square(time, 44 * osc.saw(time, 4)))  // no idea
}