[][src]Module bae_rs::sounds::standard_block

StandardBlock

A structure implementing the ability to create a graph of different Generators, Modifiers, and the form of interaction between them to create large-scale effects such as those found in synthesizers.

Structs

StandardBlock

Struct used for generalizing the structure of and abstracting the Sound struct. This allows us to create complex sounds as a graph of StandardBlocks, where each block can be a Modifier, Generator, or both, and there output of the StandardBlock is defined as some user-definable combination of the Generator and Modifier output. See Sound documentation for more info.

Type Definitions

Inter

Reference-counted wrapper for the closure InterBase

InterBase

Type defining the closure that combines inputted SampleT samples from the outputs of the Generators and Modifiers of the containing StandardBlock.

StandardBlockSP

Alias for a StandardBlock object wrapped in a smart pointer.