What are the numbers in the parenthesis called?
fill(0, 0, 0);
Arguments
How many arguments do you need to draw a circle?
Three (3)
What is a border around an object called in Processing?
Stroke
What do the letters RGB stand for?
Red, Green, Blue
Is the new Makerspace a hot mess?
Yes!
How many arguments do you need to draw a line?
Four (4)
What does the third argument in a command to draw a circle refer to: circle(50, 50, 50);
The diameter
What is the command to remove a border from a shape?
noStroke();
What value is the range of values on the RGB scale?
0 - 255
Which classmate has drawing of the yoga lady?
Jia
How many arguments do you need to draw a point?
Two (2)
What is wrong with this code: quadrilateral(100, 50, 75, 25, 50, 60, 100, 200);
Quadrilateral should be quad
Write a line of code to add a border size 10 around a shape.
strokeWeight(10);
What color is this: fill(0, 0, 255);
Blue
What is the name of the Science Building?
Warner Science Building
How many arguments do you need to draw a triangle?
Six (6)
What do all of the arguments in this code refer to: rect(60, 120, 33, 98);
X-coordinate of top left corner
Y-coordinate of top left corner
Width
Height
What happens if you make a border size larger than shape size?
It will turn the shape into a solid block of the border color.
What does the fourth argument in a fill command refer to?
Transparency
Does Ms. Huddleston prefer white chocolate, milk chocolate or dark chocolate?
Dark chocolate
How many arguments would you need to draw a stop sign shape?
Sixteen (16)
Write a line of code to draw an ellipse that starts at (80, 40) and has a height of 75 and width of 32.
ellipse(80, 40, 32, 75);
Write a line of code to add a red border around a shape.
stroke(255, 0, 0);
Write a line of code for a shape that is green with a value of 100 for the transparency.
fill(0, 255, 0, 100);
Tell a joke that makes the entire class laugh.
If we don't laugh, you lose the points.