Skip to content

Instantly share code, notes, and snippets.

View ozgucbertug's full-sized avatar

Ozguc Bertug Capunaman ozgucbertug

View GitHub Profile
@ozgucbertug
ozgucbertug / VCD.293_Assignment1.pde
Last active February 26, 2016 09:22
VCD.293_Assignment1
int rectHeight = 50;
int rectWidth = rectHeight*3;
int space = rectHeight/2;
int times = 20;
void setup() {
size(800, 600);
}
void draw() {
@ozgucbertug
ozgucbertug / VCD.293_randomMouseBrush.pde
Last active February 26, 2016 09:37
VCD.293_randomMouseBrush
color[] palette = {#69D2E7, #E0E4CC, #F38630, #F97886, #FA6900};
void setup() {
size (800, 600);
background(0);
//frameRate(20);
noStroke();
}
void draw() {