Showing posts with label Processing. Show all posts
Showing posts with label Processing. Show all posts

Tuesday, April 13, 2010

Result: Digital Rain


I finally have a completed piece based on learnings of computers and electronics. I used a computer program that I co-wrote with a Hive76 member to generate a simple pattern of an abstractde water droplet rippple. I projected it through glass (and plastic) and onto a reflective surface which created patterns on it, the floor, the wall, and the glass. special thanks to Alithia Gorski, photo major extraordinaire, who was able to take these photos in a pinch when my primary photographer wasn't there. if she didn't help me, I doubt I would have been able to document this.

http://www.flickr.com/photos/49283819@N03/sets/72157623723157483/

also, here is the code for the program for any/all i:ntereseted:

float x = 20;float y = 20;
void setup(){ size (600, 600); noStroke(); smooth();}
void draw_circles(float x, float y){ background (0); fill(255); ellipse(300, 300, x, y); if(y>100) { fill(0); ellipse(300, 300, x-100, y-100); } if(y>100) { fill(255); ellipse(300, 300, x-200, y-200); } if(y>300) { fill(0); ellipse(300, 300, x-300, y-300); }}
void draw(){
x+=2; y+=2; draw_circles(x, y); if(y>1000) { x=0; y=0; }}

Wednesday, March 24, 2010

Pulse Czech


In my quest to make a lo-fi synth percussion rig, I found out about, and now want to make this:



Also I learned that:

*In a circuit diagram, a single IC may appear in several times, but is identified by [an individual IC number] / [total number of that IC in a diagram]

*looking at where the leads go, there may be a number indicating which pin of that IC it is connected to

*Some circuits have a "+V", a "-V". and a Ground. DON'T PANIC!...This means (for batteries), one battery goes in with with the "+" lead going to "+V", a different battery battery goes in with with the "-" lead going to "-V", and the not-yet-connected batteries' terminals both go to ground.

*Just as some things require 2 different voltages, sometimes they need to have 2 different polarity

*If you are, say, building a pedal that is taking in +9V from a wall wort but needs +4.5V, and -4.5V, you will need to build a stage that splits the voltage and converts it from +9v to the two different ones.
THIS IS THE TRUTH

Mostly this post is just affirmation that I'm still alive, but up to come is a re-entry into Processing, and trying to make art with large PCB board etchings. It's the most electrically inspired work I've reall done in a while.

Wednesday, October 21, 2009

Uh Dissident Sediment


So, today I got to work with a grad student who wanted to get into processing, so we looked into some animation chapters together in the Big Blue Book. He knew a lot more about coding than I, as he had a background in flash. So now I have someone who might be able to help me debug some of my programs.


--END TRANS--

Saturday, September 26, 2009

Fiddlesticks and PoppyCOCK!

So after limping away from yesterday's update, I sent a message to VBLANK who got me started in Processing. Dissatisfied with the online tutorial, I needed a better guide.

so besides a pretty picture, today's image is the cover of the book I just ordered. He "HIGHLY recommend"ed it as a resource so I HASTILY went for expedited shipping.

Candy: here's a link to a granular synthesizer

a what?

a granular synthesizer! simply put, it samples a bit of sound and lets you break it down into smaller pieces or "granules" like grains of sound. you can process the sound in big bits, small, and...well... just play the darn thing!