Browse Source

Improve documentation.

faust
Stephane Letz 4 years ago
parent
commit
c6127e8378
2 changed files with 10 additions and 2 deletions
  1. +9
    -1
      Faust.md
  2. +1
    -1
      examples/physicalmodel.dsp

+ 9
- 1
Faust.md View File

@@ -39,8 +39,16 @@ gate = button("gate [switch:1]");
process = os.osc(freq) * gain, os.sawtooth(freq) * gain * gate;
```

Some additional files can be seen in the examples folder:
The standard examples ported to Faust can be seen in the examples folder:

- [gain.dsp](https://github.com/VCVRack/VCV-Prototype/blob/faust/examples/gain.dsp)
- [rainbow.dsp](https://github.com/VCVRack/VCV-Prototype/blob/faust/examples/rainbow.dsp)
- [vco.dsp](https://github.com/VCVRack/VCV-Prototype/blob/faust/examples/vco.dsp)

Some additional examples:

- [synth.dsp](https://github.com/VCVRack/VCV-Prototype/blob/faust/examples/synth.dsp) demonstrates how to use all different VCV Prototype UI items
- [organ.dsp](https://github.com/VCVRack/VCV-Prototype/blob/faust/examples/organ.dsp) demonstrates a MIDI controllable additive synthesis based organ
- [physicalmodel.dsp](https://github.com/VCVRack/VCV-Prototype/blob/faust/examples/physicalmodel.dsp) demonstrates a modal synthesis based bell connected to a reverb



+ 1
- 1
examples/physicalmodel.dsp View File

@@ -15,7 +15,7 @@ with {
freeverb_demo = _,_ <: (*(g)*fixedgain,*(g)*fixedgain :
re.stereo_freeverb(combfeed, allpassfeed, damping, spatSpread)),
*(1-g), *(1-g) :> _,_
with{
with {
scaleroom = 0.28;
offsetroom = 0.7;
allpassfeed = 0.5;


Loading…
Cancel
Save