I Get Lost In the Brown Bear's eyes.
I need help with the Brown Bear's Eyes challenge. Every time I try to put in the code it says I need to fix a previous step. Do I need to make a new ellipse or use the old one? Either way it doesn't work.
Which Step are you currently working on?
Step Two
In Step 2 of the Brown Bear Eyes Challenge, we are asked to:
- Create a new variable to store the size of the eyes and set it equal to faceSize/8
- Replace the values of 20 in the ellipse statements for the eyes with the name of the new variable
We are given the HINT code:
// eyes var _____ = faceSize / 8; ellipse(160, 180, ___ , ___); ellipse(240, 180, ___ , ___);
In Step 1, we changed the value of value for faceSize
and we saw that the size of the ears and nose change with the size of the face, but the eyes don't. This is because faceSize is used to calculate earSize and the width and height of the ellipse that draws the nose.
In Step 2, we want to look at how faceSize is used with the earSize variable and create a new variable that does the same thing for the eyes. Then, we want to use that new variable to replace the width and height arguments of the calls to ellipse that draw the eyes.
I can't see any steps sorry
Please sign in to leave a comment.