Affichage des articles dont le libellé est sketching. Afficher tous les articles
Affichage des articles dont le libellé est sketching. Afficher tous les articles

mercredi 6 novembre 2013

random sketching and drawing

 Some random sketching and drawing I did, I don't usually use color but I felt I could try for this.



 A fist sketch I did on some lined paper.

 The sketch on the right is the first sketch I did of the series, the one on the right is after processing it in photoshop to clean it up.


And here are two variants of it with different colors, all done by pencil and colored pencil.













The four last drawings took some inspiration from here: http://www.zerochan.net/1289632

Bolt-action SIM card changer.

    This idea stemmed from a conversation I was having with some friends on a boring Monday afternoon. We were talking about how stores always get prank calls and that the solution would be that stores could have a phone that blocks your number after a certain amount of calls in a given time period, and that an effective counter would be to change your SIM card and thus your number after each call. As you may know, changing a SIM card is long and impractical, requiring to take out the phones battery, slide the card out and put the new one in.
    Thus I present you the bolt-action, clip fed SIM card changer. It is an add-on to a phone that is inserted in the space normally reserved for the battery and SIM card. It holds those two elements separately and allows the battery to be placed elsewhere making space for the rest of the system.



mardi 17 septembre 2013

DSDN112 Lab.






 The red tone coveys a sentiment of anger.
 In this picture the character has a cetrall position flanked by two dark zones driving a sense of mystery.
In this one the character is standing over the observer giving the character a dominant position, the dark surrounding him enhance the focus on him, this conveys either a sens of aggressiveness or security depending on context.

dimanche 8 septembre 2013

DSDN 142: Project 2




This is the poster I used as a source of inspiration. Analysis of the original poster:




Some pictures and code of the processing sketching I used for the final poster:

 size (400, 400);
smooth();
background(255);

noFill();
line(20, 380, 380, 380);
arc(20, 375, 10, 10, HALF_PI, PI);
line(15, 375, 15, 20);
arc(380, 375, 10, 10, 0, HALF_PI);
line(385, 375, 385, 20);
arc(380, 20, 10, 10, PI, TWO_PI);
arc(20, 20, 10, 10, PI, TWO_PI);
arc(width/2, 20, 350, 350, 0, PI);

save("P2_botom.tif");
 size(400, 400);
smooth();
background(247, 255, 247);
noFill();


//fill(125, 169, 255);
ellipse (200, 200, 350, 350);

//fill(125, 169, 255);
ellipse (225, 200, 300, 300);

save("P2_center.tif");

 size (400, 200);
smooth();
background(255);

noFill();
line(20, 130, 380, 130);
arc(20, 125, 10, 10, HALF_PI, PI);
line(15, 125, 15, 20);
arc(380, 125, 10, 10, 0, HALF_PI);
line(385, 125, 385, 20);
arc(380, 20, 10, 10, PI, TWO_PI);
arc(20, 20, 10, 10, PI, TWO_PI);
arc(width/2, 20, 350, 200, 0, PI);

save("P2_top.tif");


 size(400,400);
smooth();
background(255);
translate(200,200);
scale(3.5);

beginShape();
vertex(0,-50);
vertex(14,-20);
vertex(47,-15);
vertex(23,7);
vertex(29,40);
vertex(0,25);
vertex(-29,40);
vertex(-23,7);
vertex(-47,-15);
vertex(-14,-20);
endShape(CLOSE);

save("star.jpeg");

//Code for the star taken from the processing website (http://processing.org/tutorials/pshape/)
size(400,400);
//stroke(45,246,255);
smooth();
background(255);
//fill(5);

translate(200,200);
strokeWeight(5);
ellipse (0,0, 350, 350);

strokeWeight(1);
//noStroke();
//fill(255);
scale(3.5);
beginShape();
vertex(0,-50);
vertex(14,-20);
vertex(47,-15);
vertex(23,7);
vertex(29,40);
vertex(0,25);
vertex(-29,40);
vertex(-23,7);
vertex(-47,-15);
vertex(-14,-20);
endShape(CLOSE);

save("star_Circle.jpeg");

//Code for the star taken from the processing website (http://processing.org/tutorials/pshape/)





Some sketching done for this project:


I managed to have a fairly defined concept early on.

Theses are the final three iterations, only the final one is colored as the coloring is a very long process:





The main thing I was looking for with the different iterations was how to fill the space and in the end I decided to mix the two first iterations.


jeudi 25 juillet 2013

DSDN142 Lab1: procedural sketches

 This first sketch replicates the final drawings obtained by Vera Molnar using her procedural method of drawing (http://www.atariarchives.org/artist/sec11.php)
 This drawing was made by following the instructions given by Sol Lewitt (http://www.moma.org/learn/moma_learning/themes/conceptual-art/sol-lewitt-and-instruction-based-art), the filling for each square was determined randomly from the four choices given.
This drawing was done using the instructions and examples given by Edward Zajec (http://www.atariarchives.org/artist/sec16.php).