Question: *** * PROBLEM 3: The following function draws maskey mouse, if you call it like * this from main: * * 112 113 114 115
*** * PROBLEM 3: The following function draws maskey mouse, if you call it like * this from main: * * 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 * * 131 2132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 1 *
* draw (.5, .5, .25); *
* Change the code to draw miskey moose instead. Your solution should be * recursive. * Before picture: * http://fpl.cs.depaul.edu/jriely/ds1/images/MickeyMouse.png After picture: * http://fpl.cs.depaul.edu/jriely/ds1/images/MickeyMoose.png * You may not use any "fields" to solve this problem (a field is a variable * that is declared "outside" of the function declaration --- either before * or after). */ public static void draw (double centerX, double centery, double radius) { // TODO if (radius
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
