fabianmoronzirfas
11/16/2016 - 7:03 AM

design_a_word_02.pde


color c1 = color(#282D38);
color c2 =  color(#FFBA52);
color c3 = color(#34415E);
//for (int i = 0; i < height; i++) {
//  float inter = map(i, 0, height*2, 0, 1);
//  stroke(lerpColor(c1, c2, inter));
//  line(0, i, width, i);
//}
size(200,200);
background(c3);
noStroke();
int diam = width/2;
int percent = 7;
for (int j = diam - ((diam/100) *percent); j < diam + ((diam/100) * percent); j++ ) {
  fill(c2, 80);
  ellipse(width/3, height/2, j, j);
}
fill(c2);
ellipse(width/3, height/2, diam, diam);
ellipseMode(CORNER);
fill(c1);
ellipse(-width, height/2, width * 5, width);