View LearningCsound.cs
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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
namespace Csound.TableMorph.Theremin | |
{ | |
View Theremin
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
<Cabbage> bounds(0, 0, 0, 0) | |
form caption("Theremin") size(700, 300), guiMode("queue"), pluginId("thm1") | |
rslider bounds( 0, 40, 80, 80), valueTextBox(1), textBox(1), text("Att."), channel("Attack"), range(0, 5, 0.15) | |
rslider bounds(100, 40, 80, 80), valueTextBox(1), textBox(1), text("Gain"), channel("Gain"), range(0, 1, 0.65) | |
rslider bounds(200, 40, 80, 80), valueTextBox(1), textBox(1), text("Glide"), channel("Glide"), range(0, 1, 0.15) | |
rslider bounds(300, 40, 80, 80), valueTextBox(1), textBox(1), text("Lfo Freq"), channel("Lfo"), range(0, 100, 7) | |
rslider bounds(300, 40, 80, 80), valueTextBox(1), textBox(1), text("Lfo Amp"), channel("LfoAmp"), range(0, 100, 8.5) | |
rslider bounds(400, 40, 80, 80), valueTextBox(1), textBox(1), text("Filter Freq"), channel("FiltFreq"), range(100, 5000, 1000) | |
rslider bounds(500, 40, 80, 80), valueTextBox(1), textBox(1), text("Filter Res"), channel("FiltRes"), range(0, 0.95, .066) | |
rslider bounds(600, 40, 80, 80), valueTextBox(1), textBox(1), te |
View GraphicsTurtleFun
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
## Runs for 5 minutes | |
## Author Edward Deaver | |
import turtle | |
wn = turtle.Screen() | |
alex = turtle.Turtle() | |
wn.bgcolor("orange") | |
alex.color("white") | |
x = 90 | |
alex.ht() |