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

    Interface InterestingPoint

    A point of interest in the Mandelbrot set with description

    InterestingPoint

    const elephantValley: InterestingPoint = {
    centerX: -0.7269,
    centerY: 0.1889,
    zoom: 100,
    description: "Elephant Valley - fascinating self-similar structures"
    };
    interface InterestingPoint {
        centerX: number;
        centerY: number;
        zoom: number;
        description: string;
    }
    Index

    Properties

    centerX: number

    Real part of the center coordinate

    centerY: number

    Imaginary part of the center coordinate

    zoom: number

    Recommended zoom level for optimal viewing

    description: string

    Human-readable description of this location