Question: Using Java Objective: Write a program in which draws (yes it actually makes a picture) a triangular fractal using recursion. This is best if done
Objective: Write a program in which draws (yes it actually makes a picture) a triangular fractal using recursion. This is best if done using a java applet. Suggested Methodology The idea for it is this First draw a filled equilateral triangle 2. Next draw another filled equilateral triangle of a different color that's upside down in the middle of that triangle 3. Using the other triangles formed repeat step 2 until a pixel limit of 4 is reached HINTS It may be a good idea to look at the examples I gave 02/12/2015 The method fillPolygon(int xPoints, intl yPoint, numberOfPoints) as called by the graphics device is important The method setColor(Color aColor) is important for picking different colors to draw things. Example Image of Results: Li Applet View... Applet Applet started
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
