Java Software Solutions >EX2.18 > Solution

Problem:

The following lines of code draw the eyes of the snowman in the Snowman applet. The eyes seem centered on the face when drawn, but the first parame¬ters of each call are not equally offset from the midpoint. Explain.
page.fillOval (MID-10, TOP+10, 5, 5);
page.fillOval (MID+5, TOP+10, 5, 5);

Output:

Not Available

Solution:

The first parameter specifies the upperleft corner of the eyes, not the center of the eyes. The eyes are circles of diameter 5. Hence, the center of the first eye is –10 + 2.5 = -7.5 units to the left of MID, and the second eye is 5 + 2.5 = 7.5 units to the right of MID.


No comments :

Post a Comment

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact