Skip to content

Latest commit

 

History

History

thin_red_line_the

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
permalink title description
/examples/volume3/thin_red_line_the/
The Thin Red Line (1998) | Minimalist Movie Poster
Minimalist Movie Poster generated using Java and Processing.

The Thin Red Line (1998)

Drama, War

Plot

Terrence Malick's adaptation of James Jones' autobiographical 1962 novel, focusing on the conflict at Guadalcanal during the second World War.

details

Movie Poster

The code

// Manuale di Programmazione Cinematografica
// Daniele Olmisani, 2015

// The thin red line (1998)


final color PAPER = color(240, 240, 240);
final color INK = color(190, 0, 50);


void setup() {
  size(480, 640);
  noLoop();
}


void draw() {
  
  final float S = 0.002*min(width, height);
  
  background(PAPER);
  stroke(INK);
  strokeWeight(S);
  
  line(0, 0.5*height, width, 0.5*height);
  
  save("the-thin-red-line.png");
}
  

MdPC - a collection of minimalist movie posters by Daniele Olmisani Please, see LICENSE file