mandelbrot/mandelbrot.h
2022-07-04 19:22:36 +02:00

15 lines
172 B
C++

#pragma once
#include <mpfr.h>
#include <cmath>
#include "utils.h"
using namespace Util;
namespace Mandelbrot
{
uint32_t mandelbrot(const BigFloat &c, Vec2bf &ret);
}