UNPKG

@prachwal/mandelbrot-generator

Version:

Professional Mandelbrot fractal generator with TypeScript support, interactive web interface, and multiple output formats

12 lines 489 B
/** * @fileoverview Central registry for all fractal algorithms * @module AlgorithmRegistry */ import { fractalEngine } from '../core/fractal-engine.js'; import { MandelbrotFractal } from './mandelbrot.js'; import { JuliaFractal } from './julia.js'; import { BurningShipFractal } from './burning-ship.js'; export declare function registerAllAlgorithms(): void; export { fractalEngine }; export { MandelbrotFractal, JuliaFractal, BurningShipFractal }; //# sourceMappingURL=index.d.ts.map