Question: Objective: Write a program in java which draws (yes it actually makes a picture) a triangular fractal using recursion. This is best if done using
Objective:
Write a program in java 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
Next draw another filled equilateral triangle of a different color thats upside down in the middle of that triangle
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, int[] yPoint, numberOfPoints) as called by the graphics device is important
The method setColor(Color aColor) is important for picking different colors to draw things.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
