MdPC

Bee Movie (2007)

Animation, Adventure, Comedy

Plot

Barry B. Benson, a bee just graduated from college, is disillusioned at his lone career choice: making honey. On a special trip outside the hive, Barry’s life is saved by Vanessa, a florist in New York City. As their relationship blossoms, he discovers humans actually eat honey, and subsequently decides to sue them.

details

Movie Poster

The code

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

// Bee Movie (2007)


final color PAPER = color(70, 25, 20);
final color INK = color(250, 220, 55);

final int STRIPES = 3;


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


void draw() {
  
  float dH = height / (2*STRIPES);
  
  background(PAPER);
  
  fill(INK);
  noStroke();
  
  for (int i=0; i<STRIPES; i++) {
    
    rect(0, 0, width, dH);
    translate(0, 2*dH);
  }
  
  save("bee-movie.png");
}

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