- Mandelbrot : Mandelbrot set explorer
- Julia explorer : Julia and Mandelbrot explorer
- Game Of Life : Game Of Life Player
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
class_name VdfParser | |
enum ParsingError { | |
SUCCESS = 0, | |
UNMATCHING_QUOTES = 1, | |
UNRECONISED_TOKEN = 2, | |
UNMATCHING_BRACKETS = 3, | |
} | |
# A recursive basic and unsafe parser of Valve Data Format (VDF) made from my understanding of it |