Processing

Primeira exploração de formas tipográficas em Processing.

Código da composição

size(600,600);
background(#00458A);

//«C»
fill(#B396DB);
noStroke();
circle(180,200,200);
fill(#00458A);
rectMode(CENTER);
square (280,200,200);

//«A»
stroke(#34FF6D);
strokeWeight(4);
beginShape();
noFill();
vertex(100,100);
vertex(50,200);
vertex(100,100);
vertex(150,200);
endShape();
beginShape();
noFill();
vertex(80,140);
vertex(120,140);
endShape();

//«A»
fill(#B396DB);
noStroke();
triangle(300,300,220,420,380,420);

//«S»
stroke(#34FF6D);
strokeWeight(1);
strokeCap(SQUARE);

line(450,400,500,320);
line(450,420,500,340);
line(450,440,500,360);
line(450,450,520,450);
line(520,460,460,540);
line(520,480,460,560);
line(520,500,460,580);

//«O»
stroke(#34FF6D);
strokeWeight(5);
noFill();
ellipseMode(CENTER);
circle(400,100,140);

Deixe um comentário