dimanche 15 septembre 2019

Interactive Art - Week 2 - Mikael Ferroukhi

For this assignment, I chose to draw a scene, or more like a shot from the movie "Jaws". The reason why I chose this shot is because it is very iconic in the cinema world, and even when drawn in a very minimalist manner, it is still very recognizable.

These pictures were used as my inspiration:

Résultat de recherche d'images pour "jaws poster"

Résultat de recherche d'images pour "jaws movie poster minimalist"













Résultat de recherche d'images pour "jaws movie poster minimalist"

This is how it looked on my Processing display window:



This is the code I have used in order to produce this image:


size (1000, 1000);

//Here I start by drawing the background : both the water and the sky
fill(0,0,255);
rect(0,0,1000,1000);

fill(135,206,235);
rect(0,0,1000,150);


//I use bezier in order to draw the shape of the shark head aswell as its mouth, ellipses are used for the eyes
fill(135,206,235);
strokeWeight(5);
bezier(200, 1000, 370, 160, 630, 160, 800, 1000);
fill(135,206,200);
bezier(300, 850, 370, 500, 630, 500, 700, 850);
fill(135,206,235);
bezier(300, 850, 370, 700, 630, 700, 700, 850);
fill(0,102,102);
ellipse(325,600,20,50);
ellipse(675,600,20,50);

//Drawing a swimmer with his body tilted to the right as if he was moving in that direction
fill(255,229,204);
rect(475,130,15,15);
rotate(radians(5));
translate(475,100);
fill(205,100,100);
rect(0,0,30,30);


//Resetting to the default value
rotate(radians(-5));
translate(-400,-100);

//Drawing clouds with different shapes and thickness
fill(255,255,255);
rect(800,10,50,10);
rect(100,10,30,20);
scale(2,1.5);
rect(100,10,30,25);

Aucun commentaire:

Enregistrer un commentaire