Helpful Links
Here’s a program I wrote to draw the letter “T” with some points. The “strokeWeight” function determines how big the dot is.
Text Box
strokeWeight(4);
point(100,100);
point(150,100);
point(200,100);
point(250,100);
point(300,100);
point(200,150);
point(200,200);
point(200,250);
point(200,300);
Type in my program and run it.
Now change it to make the first letter of your name
How would you change the program to make the points larger?