Created
September 10, 2010 19:03
-
-
Save GiorgioRegni/574164 to your computer and use it in GitHub Desktop.
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
; Mandelbrot fractal constant, play with it to generate cool images | |
@MAXITER = internal constant i32 200 | |
@ESCAPE = internal constant double 4.0 | |
@XC = internal constant double -0.10894500736830963 ; center point x | |
@YC = internal constant double -0.8955496975621973 ; center point y | |
@ZOOM = internal constant double 0.1 ; zoom into the fractal | |
@W = internal constant i32 2048 ; image width | |
@H = internal constant i32 2048 ; image height |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment