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

    Interface BoundaryPoint

    A point on the boundary of the Mandelbrot set

    BoundaryPoint

    const boundaryPoint: BoundaryPoint = {
    x: -0.7269,
    y: 0.1889,
    iterations: 87
    };
    interface BoundaryPoint {
        x: number;
        y: number;
        iterations: number;
    }
    Index

    Properties

    Properties

    x: number

    Real coordinate (x-axis)

    y: number

    Imaginary coordinate (y-axis)

    iterations: number

    Number of iterations before divergence