File: generic_oscillators

package info (click to toggle)
ecasound 2.9.3-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 6,292 kB
  • sloc: cpp: 39,475; sh: 4,335; lisp: 1,918; ansic: 1,883; makefile: 888; python: 617; ruby: 202
file content (21 lines) | stat: -rwxr-xr-x 810 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# --------------------------------------------------------------------
# ecasound / generic oscillator presets 
# --------------------------------------------------------------------
#
# - all lines beginning with a '#' are ignored
# - '\' can be used to break long lines
# - preset format:
#   "preset_number start_value end_value pos1 value1 pos2 value2 ..."
# - requirements:
#   -  all specified positions and values must be between 0.0 and 1.0
#   - pos1 < pos2 < ... < posN
#   - there must be a posN for every valueN
#
# --------------------------------------------------------------------
#
# a triangle wave - start=0.0, end=0.0, pos1=0.5, value1=1.00
0 = 0.0 0.0 0.5 1.00
# linear wave - start=0.0 end=1.0
1 = 0.0 1.0
# random bounces
2 = 0.5 0.5 0.2 0.1 0.3 0.7 0.4 0.1 0.5 0.9 0.6 0.05 0.8 0.9 0.2