Arguments
Shapes
Borders
Color
Miscellaneous
100

What are the numbers in the parenthesis called?
fill(0, 0, 0);

Arguments

100

How many arguments do you need to draw a circle?

Three (3)

100

What is a border around an object called in Processing?

Stroke

100

What do the letters RGB stand for?

Red, Green, Blue

100

Is the new Makerspace a hot mess?

Yes!

200

How many arguments do you need to draw a line?

Four (4)

200

What does the third argument in a command to draw a circle refer to: circle(50, 50, 50);

The diameter

200

What is the command to remove a border from a shape?

noStroke();

200

What value is the range of values on the RGB scale?

0 - 255

200

Which classmate has drawing of the yoga lady?

Jia

300

How many arguments do you need to draw a point?

Two (2)

300

What is wrong with this code: quadrilateral(100, 50, 75, 25, 50, 60, 100, 200);

Quadrilateral should be quad

300

Write a line of code to add a border size 10 around a shape.

strokeWeight(10);

300

What color is this: fill(0, 0, 255);

Blue

300

What is the name of the Science Building?

Warner Science Building

400

How many arguments do you need to draw a triangle?

Six (6)

400

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

400

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.

400

What does the fourth argument in a fill command refer to?

Transparency

400

Does Ms. Huddleston prefer white chocolate, milk chocolate or dark chocolate?

Dark chocolate

500

How many arguments would you need to draw a stop sign shape?

Sixteen (16)

500

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);

500

Write a line of code to add a red border around a shape.

stroke(255, 0, 0);

500

Write a line of code for a shape that is green with a value of 100 for the transparency.

fill(0, 255, 0, 100);

500

Tell a joke that makes the entire class laugh.

If we don't laugh, you lose the points.