Skip to content

Instantly share code, notes, and snippets.

@GiorgioRegni
Created September 10, 2010 19:03
Show Gist options
  • Save GiorgioRegni/574164 to your computer and use it in GitHub Desktop.
Save GiorgioRegni/574164 to your computer and use it in GitHub Desktop.
; 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