Question: Trying to create recursive art drawing from the DuDraw class and it needs to be recursive art. It just has to make something that is

Trying to create recursive art drawing from the DuDraw class and it needs to be recursive art. It just has to make something that is random using random in the constructor.

import dudraw.DUDraw; import java.util.Random; public class RecursiveArt { private static final int WIDTH = 1024; private static final int HEIGHT = 1024; private Random random; public RecursiveArt() { DUDraw.setCanvasSize(WIDTH, HEIGHT); DUDraw.setScale(HEIGHT, 0); random = new Random(); } // Where a lot of the code is going to be put, and it is accessed by the constructor // put DUdraw. to see the options of what you can put // Also split screen the DemoDraw program next to it // Also open in browser docs/DuDraw.html and Docs/index.html public void draw() { DUDraw.setCanvasSize(5000,5000); DUDraw.setScale(0,10); // Recursive method if (random != null) } public static void main(String[] args) { new RecursiveArt().draw(); } } 

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Accounting Questions!