-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating sawlfo.md to fit with latest documentation specs.
- Loading branch information
Showing
1 changed file
with
15 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
title: SawLFO node documentation | ||
description: SawLFO: Produces a sawtooth LFO at the fiven `frequency` and `phase` offset, with output ranging from `min` to `max`. | ||
|
||
[Reference library](../index.md) > [Oscillators](index.md) > [SawLFO](sawlfo.md) | ||
|
||
# SawLFO | ||
|
||
Produces a sawtooth LFO, with output ranging from min to max. | ||
|
||
Signature: | ||
```python | ||
SawLFO(frequency=1.0, min=0.0, max=1.0, phase=0.0) | ||
``` | ||
|
||
Produces a sawtooth LFO at the fiven `frequency` and `phase` offset, with output ranging from `min` to `max`. | ||
|
||
### Examples | ||
|
||
```python | ||
|
||
# Siren effect, using a sawtooth LFO to modulate a sine wave's frequency | ||
lfo = SawLFO(1, 200, 1000) | ||
sine = SineOscillator(lfo) | ||
sine.play() | ||
``` |