Animation, Action, Adventure
A young boy befriends a giant robot from outer space that a paranoid government agent wants to destroy.
// Manuale di Programmazione Cinematografica
// Daniele Olmisani, 2017
// The Iron Giant (1999)
final color PAPER = color(235, 135, 85);
final color INK1 = color(60, 45, 35);
final color INK2 = color(255, 255, 205);
final float L = 0.7;
void setup() {
size(480, 640);
noLoop();
}
void draw() {
final float S = min(width, height);
final float U = 0.002;
translate(0.5*width, 0.6*height);
scale(S);
background(PAPER);
strokeWeight(3*U);
fill(INK1);
noStroke();
rectMode(CENTER);
rect(0, 0, L, 0.6*L);
ellipse(0, -0.3*L, L, L);
fill(INK2);
ellipse(-0.24*L, -0.24*L, 0.3*L, 0.3*L);
ellipse( 0.24*L, -0.24*L, 0.3*L, 0.3*L);
fill(INK1);
stroke(PAPER);
quad(0, 0, -0.1*L, -0.8*L, 0, -0.9*L, 0.1*L, -0.8*L);
save("the-iron-giant.png");
}
MdPC - a collection of minimalist movie posters by Daniele Olmisani Please, see LICENSE file