//Twinkle Twinkle Little Star PFont font; //sets up font void setup(){ size(300,300); //draws canvas background(0); //makes the night sky smooth(); //prevents pixelated image font = loadFont("Corbel-24.vlw"); //creates font textFont(font); } void draw(){ //creates the "star" fill(255); float a = random(0,300); float b = random(0,300); stroke(255,20); line(150,120,a,b); //rotates the words translate(150,150); for(int r=0;r++<360;){ rotate(r); } fill(255,255,0); //makes the text yellow //tells computer what to write and where to put it text("Twinkle", -70,110); text("Twinkle", -20,135); text("Little", -45,160); text("Star", -10,185); } void mousePressed() { //click of mouse stops the star noLoop(); }