Skip to content

Instantly share code, notes, and snippets.

View EdwardDeaver's full-sized avatar
🎯
Focusing

Edward C. Deaver, IV EdwardDeaver

🎯
Focusing
View GitHub Profile
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Csound.TableMorph.Theremin
{
<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
@EdwardDeaver
EdwardDeaver / GraphicsTurtleFun
Last active September 22, 2016 03:03
Runs for about 5 minutes.
## 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()