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

    Interface FractalBounds

    Fractal bounds in the complex plane

    FractalBounds

    const bounds: FractalBounds = {
    minReal: -2.5,
    maxReal: 1.5,
    minImaginary: -1.5,
    maxImaginary: 1.5
    };
    interface FractalBounds {
        minReal: number;
        maxReal: number;
        minImaginary: number;
        maxImaginary: number;
    }
    Index

    Properties

    minReal: number

    Minimum real value (left edge)

    maxReal: number

    Maximum real value (right edge)

    minImaginary: number

    Minimum imaginary value (bottom edge)

    maxImaginary: number

    Maximum imaginary value (top edge)