Modify a text file: $/x205Tomal_valentine.pde
$/x205Tomal_valentine.pde
// test -- VALENTINE // moksadul tomal // Initialize the output window size(500,450); noStroke(); smooth(); background(0); // A black background // the letter "i" fill(255,0,0); quad(40,60,60,140,80,130,60,50); // dot the "i" ellipse(45,40,20,20); // the letter "l" beginShape(); vertex(100,100); vertex(50,220); vertex(140,260); vertex(160,230); vertex(90,200); vertex(130,110); endShape(); // the letter "o" ellipse(210,200,80,80); fill(0); ellipse(210,200,40,40); // the letter "v" fill(255,0,0); quad(250,110,290,200,310,200,350,110); fill(0); triangle(275,110,325,110,300,170); // the letter "e" fill(255,0,0); beginShape(); vertex(350,160); vertex(390,260); vertex(450,220); vertex(440,200); vertex(400,230); vertex(390,210); vertex(410,200); vertex(400,180); vertex(380,190); vertex(370,170); vertex(410,150); vertex(400,130); endShape(); // the letter "u" beginShape(); vertex(230,260); vertex(180,360); vertex(260,400); vertex(310,300); vertex(290,290); vertex(250,370); vertex(210,350); vertex(250,270); endShape();