Categories

M Train – Code

A drawing board to draw tonal scale. Video:  [video width="472" height="480" mp4="http://bootcamp.parsons.edu/wp-content/uploads/2018/08/tonecircle.mp4"][/video]   Image:   Processing Code: int x; int y = 20; int w = 100; int h = 100; int a = 0; color circColor; void setup(){ size(500,500); background(0); fill(255); textSize(14); text("Press keys to see what they looks like!", 10, 30); text("D as 'do', R as 're', etc.", 10, 60); } void draw(){ if (x>500){ x=0; y...

Continue Reading