MdPC

Moana (2016)

Animation, Adventure, Comedy

Plot

In Ancient Polynesia, when a terrible curse incurred by the Demigod Maui reaches Moana’s island, she answers the Ocean’s call to seek out the Demigod to set things right.

details

Movie Poster

The code

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

// Moana (2016)


final color PAPER = color(225, 205, 160);
final color INK = color(160, 40, 25);


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


void draw() {
  
  final float S =  min(width, height);
  final float U = 0.002;
  
  final float T = 30*U;
  
  translate(0.5*width, 0.5*height);
  scale(S);
  
  background(PAPER);

  fill(INK);  
  noStroke();
  
  for (float a=0; a<2.6*PI; a+=0.1*T) {
    
    float x = 0.06*a*cos(a);
    float y = 0.06*a*sin(a);
    
    ellipse( x,  y, T, T);
    ellipse(-x, -y, T, T);
  }
  
  save("moana.png");
}

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