@prachwal/mandelbrot-generator - v1.1.1
    Preparing search index...

    Class MandelbrotFractal

    Classic Mandelbrot fractal implementation Formula: z_{n+1} = z_n^2 + c, where z_0 = 0

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    id: "mandelbrot" = 'mandelbrot'

    Unique identifier for this fractal type

    name: "Mandelbrot Set" = 'Mandelbrot Set'

    Human-readable name

    description: "Classic Mandelbrot fractal using the iteration z² + c" = 'Classic Mandelbrot fractal using the iteration z² + c'

    Description of the fractal

    defaultConfig: FractalConfig = ...

    Default configuration for this fractal

    parameterSchema: ParameterSchema[] = ...

    Parameter schema for UI generation

    Methods

    • Core Mandelbrot iteration

      Parameters

      • point: Complex

        Point c in complex plane

      • config: FractalConfig

        Configuration parameters

      Returns FractalResult

      Iteration result

    • Generate fractal data for given configuration

      Parameters

      • config: FractalConfig

        Generation configuration

      Returns Uint8ClampedArray

      Image data array