Reference > saw
Wave
Spectrum
saw(frequency, phase) Returns a function whose input is a time (in seconds) and whose output is a point on a sawtooth wave (or saw wave for short). You can create a 440 Hz sawtooth wave by mapping a time wave to this saw function, using time.map(saw(440))
frequencyFrequency of the saw wave in Hertz (Hz) or cycles per second.phase (optional)Phase shifts the wave to the left or right. A phase of PI shifts the wave a half-cycle to the right.phasecan either be a number or it can be a wave.
You can find the code for saw in the synthesine library.