sigrist-svelte-mandelbrot-explorer
Version:
A svelte component that renders the mandelbrot set using WebGL. Try this [Demo](https://sigrist.dev/apps/mandelbrot).
21 lines (20 loc) • 655 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
numberOfIterations?: number;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type MandelbrotExplorerProps = typeof __propDef.props;
export declare type MandelbrotExplorerEvents = typeof __propDef.events;
export declare type MandelbrotExplorerSlots = typeof __propDef.slots;
/**
* Renders the Mandelbrot set.
* Will fill its parent Element.
*/
export default class MandelbrotExplorer extends SvelteComponentTyped<MandelbrotExplorerProps, MandelbrotExplorerEvents, MandelbrotExplorerSlots> {
}
export {};