learn computer | July 29, 2008



links: b1ff Beyond Failure bldgblog Complex Terrain Laboratory Cryptome Energy Shortage Global Dashboard Global Guerillas Hot ATL DIY Jihadica Linked By Air Mute Mag Naked Capitalism Naxalite Rage Paleo Future Public Design Workshop The Loom of Ruin The Memory Hole War Is Boring Zero Intelligence Agents
Jon, I tried to figure out how you created this sketch in what program. I like the texture and the transparent look of the work. Would you please tell me what program you used to create the sketch? I really like to look at your works and figure out how you created them so I can learn more. You know me…
Thanks a lot.
comment by Thuycam — July 31, 2008 @ 3:42 pm
It was just one of the better looking results of a processing sketch that I wrote. Pretty simple. Heavily dependent on the images used.
PImage img;
PImage imgdos;
void setup(){
size(640,480);
smooth();
img = loadImage("292.jpg"); //change to path to your 1st image
imgdos = loadImage("123.jpg"); //change to path to your 2nd image
}
void draw(){
int w= img.width*2;
int h = img.height*2;
for (int i = 1; i < 20; i ++){
rotate(PI*i/3);
translate(i, random(i*10));
image(img, i, random(h/2),w, h);
tint(255,random(i*100));
translate(i, random(i*10));
image(imgdos, i*i, random(h/2),w/2, h/3*i);
tint(255,random(150));
}
}
comment by admin — July 31, 2008 @ 4:28 pm
Oh yeah! I remembered you told me once about “Processing” and “Design By Numbers” in class. I bookmarked the sites, but i did not have a chance to try their programs yet (kept busy with other design stuff). I think maybe this is the time I would come back to my programming knowledge to play with these programs. Thanks for reminding me of them. I am exciting to learn these new medium.
comment by Thuycam — August 1, 2008 @ 8:44 am