What color is in the center of this Rect? Rect(50, 50, 100, 100, fill=gradient('red', 'blue'))
Red
What is my width? Rect(10, 20, 30, 40)
30
What shape am I making with these parameters(left, top, width, height)
Rectangle
What color am I: rgb(255, 0, 0)
red
What fish do dogs chase?
Catfish
If you want the text outlined only and not filled with any color, what word do you put next to fill?
Label('This has a red border!', 200, 250, size=36, fill=_______________, border='red')
None
What is the width:
left-top corner at (10, 20)
the right-bottom is at (40, 60).
30 because 40-10 = 30
What shape am I making with these parameters(centerX, centerY, radius)
Circle
What color am I: rgb(0, 0, 0)
black
How do you get rid of varnish?
Take away the R
Can you use a gradient on a label?
Yes
What is the height:
left-top corner at (10, 20)
the right-bottom is at (40, 60).
40 because 60 - 20 = 40
What shape am I making with these parameters(x1, y1, x2, y2)
Line
What color am I: rgb(0, 0, 255)
blue
What is full of holes but can hold water?
A sponge
Is a 4-sided regular polygon drawn the same as a square?
No
What are my coordinates:
Rectangle that starts at y = 150 and width = 50
with a x = 0 and height = 20
Rect(0, 150, 50, 170)
What shape am I making with these parameters(value, centerX, centerY)
Label
What color am I: rgb(0, 128, 0)
green
Double the points:
What is the output:
print("Hello")
Hello
What happens if you draw a star with roundness larger than 100?
A. error that the roundness is too large
B. star draws with a roundness of 100
C. circle is drawn instead
D. no error, but the star is not drawn
A
What is the width: Arc(200, 200, 50, 70, 30, 90)
50
What shape am I making with these parameters(centerX, centerY, radius, points)
Star
What order do custom colors go in?
rgb, rbg, bgr, or brg
rgb
red, green, blue
What is the output?
print("I won.")
I won.