Perseus
    Preparing search index...

    Type Alias PerseusGraphTypeExponential

    type PerseusGraphTypeExponential = {
        asymptote?: number | null;
        coords?: Coord[] | null;
        startCoords?: { asymptote: number; coords: [Coord, Coord] };
        type: "exponential";
    }
    Index

    Properties

    asymptote?: number | null

    The y-value of the horizontal asymptote (the line y = asymptote). Corresponds to the coefficient c in f(x) = a·eᵇˣ + c.

    coords?: Coord[] | null

    Two points along the exponential curve.

    startCoords?: { asymptote: number; coords: [Coord, Coord] }

    The initial coordinates the graph renders with.

    type: "exponential"