Slight documentation improvement
This commit is contained in:
parent
5ec75c3062
commit
e7507b2dd0
2 changed files with 10 additions and 6 deletions
|
@ -101,9 +101,9 @@ This is a short overview of the API provided by the
|
|||
hexagonal Matrix API, which is the primary API used
|
||||
inside [HexoSynth](https://github.com/WeirdConstructor/HexoSynth).
|
||||
|
||||
This only showcases the non-realtime generation of audio
|
||||
samples. For a real time application of this library please
|
||||
refer to the examples that come with this library.
|
||||
This only showcases the direct generation of audio samples, without any audio
|
||||
device playing it. For a real time application of this library please refer to
|
||||
the examples that come with this library.
|
||||
|
||||
```rust
|
||||
use hexodsp::*;
|
||||
|
@ -131,6 +131,8 @@ let (out_l, out_r) = node_exec.test_run(0.11, true);
|
|||
// samples now.
|
||||
```
|
||||
|
||||
#### Simplified Hexagonal Matrix API
|
||||
|
||||
There is also a simplified version for easier setup of DSP chains
|
||||
on the hexagonal grid, using the [crate::MatrixCellChain] abstraction:
|
||||
|
||||
|
|
|
@ -103,9 +103,9 @@ This is a short overview of the API provided by the
|
|||
hexagonal Matrix API, which is the primary API used
|
||||
inside [HexoSynth](https://github.com/WeirdConstructor/HexoSynth).
|
||||
|
||||
This only showcases the non-realtime generation of audio
|
||||
samples. For a real time application of this library please
|
||||
refer to the examples that come with this library.
|
||||
This only showcases the direct generation of audio samples, without any audio
|
||||
device playing it. For a real time application of this library please refer to
|
||||
the examples that come with this library.
|
||||
|
||||
```rust
|
||||
use hexodsp::*;
|
||||
|
@ -133,6 +133,8 @@ let (out_l, out_r) = node_exec.test_run(0.11, true);
|
|||
// samples now.
|
||||
```
|
||||
|
||||
### Simplified Hexagonal Matrix API
|
||||
|
||||
There is also a simplified version for easier setup of DSP chains
|
||||
on the hexagonal grid, using the [crate::MatrixCellChain] abstraction:
|
||||
|
||||
|
|
Loading…
Reference in a new issue