When I want to build an Oscillator with AudioKit there are different ways to go. For example you can create an AKOperation within an AKOperationGenerator like
var osc = AKOperationGenerator { parameters in
returnAKOperation.sawtoothWave(frequency: GeneratorSource.frequency)
)
but you could also create one with
var oscillator = AKOscillator(waveform: AKTable(.sawtooth))
What's the difference and when to choose what? Thnx!