-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
joachimheintz
committed
Oct 1, 2024
1 parent
28be74a
commit 0bbcaf1
Showing
8 changed files
with
213 additions
and
464 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<CsoundSynthesizer> | ||
<CsOptions> | ||
-odac -m128 | ||
</CsOptions> | ||
<CsInstruments> | ||
sr = 44100 | ||
ksmps = 64 | ||
nchnls = 2 | ||
0dbfs = 1 | ||
seed 0 | ||
// by joachim heintz | ||
instr PlingStruct | ||
// generate one tone in a wide range between short/noisy and long/pitched | ||
aMode = mode(mpulse(ampdb(random:i(-22,0)),p3),mtof:i(random:i(80,100)),10^(p3-1)) | ||
// distribute anywhere in the stereo field and output | ||
aL,aR pan2 aMode,random:i(0,1) | ||
out(aL,aR) | ||
// call the next instance of this instrument | ||
schedule("PlingStruct",rnd:i(1),random:i(1,4)) | ||
endin | ||
schedule("PlingStruct",0,3) | ||
</CsInstruments> | ||
<CsScore> | ||
</CsScore> | ||
</CsoundSynthesizer> | ||
<bsbPanel> | ||
<label>Widgets</label> | ||
<objectName/> | ||
<x>100</x> | ||
<y>100</y> | ||
<width>320</width> | ||
<height>240</height> | ||
<visible>true</visible> | ||
<uuid/> | ||
<bgcolor mode="background"> | ||
<r>240</r> | ||
<g>240</g> | ||
<b>240</b> | ||
</bgcolor> | ||
</bsbPanel> | ||
<bsbPresets> | ||
</bsbPresets> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.