[][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

BlockRc

Alias for an Rc-wrapped StandardBlock object.

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 cointaining StandardBlock