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

    Interface InterestingPoints

    Collection of predefined interesting points in the Mandelbrot set

    InterestingPoints

    const points: InterestingPoints = {
    classic: { centerX: -0.5, centerY: 0, zoom: 1, description: "Full set view" },
    elephant: { centerX: -0.7269, centerY: 0.1889, zoom: 100, description: "Elephant Valley" }
    };
    interface InterestingPoints {
        classic: InterestingPoint;
        elephant: InterestingPoint;
        seahorse: InterestingPoint;
        lightning: InterestingPoint;
        spiral: InterestingPoint;
        readonly [key: string]: InterestingPoint;
    }

    Indexable

    Index

    Properties

    Classic full view of the Mandelbrot set

    Elephant Valley detail

    Seahorse Valley detail

    lightning: InterestingPoint

    Lightning-like patterns

    Spiral structures