Skip to content

Latest commit

 

History

History

rush

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
permalink title description
/examples/volume2/rush/
Rush (2013) | Minimalist Movie Poster
Minimalist Movie Poster generated using Java and Processing.

Rush (2013)

Action, Biography, Drama

Plot

The merciless 1970s rivalry between Formula One rivals James Hunt and Niki Lauda.

details

Movie Poster

The code

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

// Rush (2013)


final color PAPER = color(244);
final color INK = color(227, 0, 30);


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


void draw() {
  
  background(PAPER);
  
  fill(INK);
  noStroke();
  
  beginShape();
    vertex(0, 0);
    vertex(width, 0);
    vertex(width, 2*height/3.0);
    vertex(width/2.0, height/2.0);
    vertex(0, 2*height/3.0);
  endShape();
  
  save("rush.png");
}

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