This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// based on the code of the coding challenge | |
// by Daniel Shiffman, accessed on: | |
// https://youtu.be/kKT0v3qhIQY | |
// needs to be run on Processing (https://processing.org/) | |
Tree tree; | |
float min_dist = 5; | |
float max_dist = 800; | |
boolean arboriza = false; |