Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 653 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 653 Bytes

Mandlebrot Renderer

This code will generate a png render of the mandlebrot set (see example below).

You can tinker with the variables in main.go to view different parts of the set etc.

mandlebrot

Requirements

Running

  • clone the repo

  • build the code

    # this will output the executable
    go build
  • run the executable (on windows it would be mandlebrot.exe)

    # <WIDTH> is an optional parameter to set the width of the desired render in pixels
    ./mandlebrot <WIDTH>