Error in user YAML: (<unknown>): mapping values are not allowed in this context at line 2 column 18
---
permalink: /examples/volume2/wall_the/
title: Pink Floyd: The Wall (1982) | Minimalist Movie Poster
description: Minimalist Movie Poster generated using Java and Processing.
---
Animation, Drama, Fantasy
A confined but troubled rock star descends into madness in the midst of his physical and social isolation from everyone.
// Manuale di Programmazione Cinematografica
// Daniele Olmisani, 2015
// The Wall (1982)
final color PAPER = color(255);
final color INK = color(30);
void setup() {
size(480, 640);
noLoop();
}
void draw() {
final float S = min(width, height);
final float U = 0.002;
final float W = S / 6;
final float H = 0.50*W;
final float R = 0.10*W;
background(INK);
fill(PAPER);
stroke(INK);
strokeWeight(S*U);
for (int j=0; j<height/H; j++) {
for (int i=0; i<width/W+1; i++) {
rect(-(W/2)*(j%2)+i*W, j*H, W, H, R);
}
}
save("the-wall.png");
}
MdPC - a collection of minimalist movie posters by Daniele Olmisani Please, see LICENSE file