Data Structures and Algorithms ASAP Create a Cantor Set Recursively using Line in processing line(startX,startY,endX,endY) where the starting point of the line is at coordinates (startX,startY) and the ending point of the line is at coordinates (endX,endY) Remember the top left of the screen is (0,0) and the plus x direction is to the right and the plus Y direction is downward Requirements 1) Each line should follow the following pattern https://en.wikipedia.org/wiki/Cantor_set#/media/File:Cantor_set_binary_tree.svg 2) The number of lines created should be printed into the console by returning the number from recursion
Data Structures and
ASAP
Create a Cantor Set Recursively using Line in processing
line(startX,startY,endX,endY)
where the starting point of the line is at coordinates (startX,startY)
and the ending point of the line is at coordinates (endX,endY)
Remember the top left of the screen is (0,0) and the plus x direction is to the right and the plus Y direction is downward
Requirements
1) Each line should follow the following pattern
https://en.wikipedia.org/wiki/Cantor_set#/media/File:Cantor_set_binary_tree.svg
2) The number of lines created should be printed into the console by returning the number from recursion like we did in circles
Optional
3) Integrate colors (if you call stroke(R,G,B) the line will be
Trending now
This is a popular solution!
Step by step
Solved in 2 steps