Day One of Processing Programing

Today I started working with shapes in processing, I made a program that generates random shapes. Here, have a look: This was made by using a for loop, every iteration of the loop draws 4 shapes (triangle, rectangle, quadrilateral, and ellipse) with rando...

Testing Arrays in Processing

Today I wanted to see how the Processing environment can handle more advanced code then shapes. I made a program to test processings abilities and mine, here is the output of the arrays methods below: Unsorted: [2][5][3][1][4] Shuffled: [3][2][1][5][4] So...

Broken TV

I made some code that used for loops to draw 500 randomly colored lines across the screen, then I made it refresh 30 times a seccond. Win. Look at the bottom for some code. Here’s the code: void setup(){   size(500,500); } void draw(){   for(int i...

Unfinshed Paint Program

I started working on a paint program for processing, but I did not finish it. You can choose you brush color and size. You can also clear all, and select your file type. I am working on finishing the saving function.