@prachwal/mandelbrot-generator
Version:
Professional Mandelbrot fractal generator with TypeScript support, interactive web interface, and multiple output formats
24 lines • 858 B
TypeScript
/**
* Burning Ship fractal implementation
*/
import { BaseFractal } from '../core/base-fractal.js';
import type { FractalConfig, FractalResult, Complex } from '../core/types.js';
export declare class BurningShipFractal extends BaseFractal {
readonly id = "burning-ship";
readonly name = "Burning Ship";
readonly description = "Burning Ship fractal using abs(z)\u00B2 + c";
readonly defaultConfig: FractalConfig;
readonly parameterSchema: {
key: string;
label: string;
type: "number";
min: number;
max: number;
step: number;
default: number;
group: string;
}[];
iterate(point: Complex, config: FractalConfig): FractalResult;
protected getColor(result: FractalResult, config: FractalConfig): [number, number, number];
}
//# sourceMappingURL=burning-ship.d.ts.map