AS LPs ARE DEAD I'M POSTING HERE Just a quick throw together with the kind of stuff i've made with processing, no horse---- about "OMGZ RENDERS DNT LUK GUD 2GEVA" any ----e like that and you'll get a neg. and anyone who wants to try themselves, heres the space invader's code, theres probably a easier way to do it but meh, i've been doing this for litterally 12 hours so i'm still learning Code: //set the canvas size(800, 800); //BG col background(207,90,90); //don't add a border to the geom noStroke(); //set the fill col // R G B color setcol = color (168, 168, 168); //HTMLcolour = #CC6600; //fill the geom fill(setcol); //LINE1 // Xpos Ypos Xhei Yhei rect( 110, 10, 25, 25); rect( 140, 10, 25, 25); //LINE2 // Xpos Ypos Xhei Yhei rect( 80, 40, 25, 25); rect( 110, 40, 25, 25); rect( 140, 40, 25, 25); rect( 170, 40, 25, 25); //LINE3 // Xpos Ypos Xhei Yhei rect( 50, 70, 25, 25); rect( 80, 70, 25, 25); rect( 110, 70, 25, 25); rect( 140, 70, 25, 25); rect( 170, 70, 25, 25); rect( 200, 70, 25, 25); //LINE4 // Xpos Ypos Xhei Yhei rect( 20, 100, 25, 25); rect( 50, 100, 25, 25); rect( 110, 100, 25, 25); rect( 140, 100, 25, 25); rect( 200, 100, 25, 25); rect( 230, 100, 25, 25); //LINE5 // Xpos Ypos Xhei Yhei rect( 20, 130, 25, 25); rect( 50, 130, 25, 25); rect( 80, 130, 25, 25); rect( 110, 130, 25, 25); rect( 140, 130, 25, 25); rect( 170, 130, 25, 25); rect( 200, 130, 25, 25); rect( 230, 130, 25, 25); //LINE6 // Xpos Ypos Xhei Yhei rect( 80, 160, 25, 25); rect( 170, 160, 25, 25); //LINE7 // Xpos Ypos Xhei Yhei rect( 50, 190, 25, 25); rect( 110, 190, 25, 25); rect( 140, 190, 25, 25); rect( 200, 190, 25, 25); //LINE8 // Xpos Ypos Xhei Yhei rect( 20, 220, 25, 25); rect( 80, 220, 25, 25); rect( 170, 220, 25, 25); rect( 230, 220, 25, 25);
thanks Only problem with processing is its a bitch to get things to work right and you will never get the same outcome more than once