Processing

Primeiro exercício desenvolvido com processing em que foram desenvolvidos 3 caracteres.

Código:

size (600,600);

background (200,100,50);

strokeWeight(10);
noFill();
circle(300,100,100);

strokeWeight(10);
line(300, 100, 350, 150);

//strokeWeight(10);
line(100, 300, 100, 450);
strokeJoin(BEVEL);
beginShape();
vertex(150, 300);
vertex(100, 350);
vertex(150, 450);
endShape();

line(500,300, 460, 450);
line(450,300, 470, 400);

Deixe um comentário