faust-libraries

The SEAM library local importing points to other libraries catalogued by arguments, like in Standard Faust Libraries.

Actually there are five different libraries:

declare name "Faust SEAM main lib";
declare version "0.2";
declare author "Giuseppe Silvi";
declare author "Davide Tedesco";
declare license "CC3";

// calling standard faust libraries
import("stdfaust.lib");

// ## SEAM LIBS

// ### standard faust lib extensions
sba = library("seam.basic.lib");
sma = library("seam.math.lib");
sfi = library("seam.filters.lib");

// ### michael gerzon and general ambisonic teory
smg = library("seam.gerzon.lib");
sam = library("seam.ambisonic.lib");

// ### stereophony and perception
sst = library("seam.stereophony.lib");
shr = library("seam.hrtf.lib");

// ### CSound and MaxMsp object cloning
scs = library("seam.csound.lib");
scy = library("seam.cyclone.lib");

// ### author specific literature
sln = library("seam.nono.lib");
sgn = library("seam.nottoli.lib");

// ### live electronics stuff
sgu = library("seam.gui.lib");
shw = library("seam.hardware.lib");
san = library("seam.analyzers.lib");
smx = library("seam.mixer.lib");

// ### instrument specific literature
svc = library("seam.vcs3.lib");

Example usage

process = sma.PIc;