Perseus
    Preparing search index...
    type PerseusGraphTypeLogarithm = {
        asymptote?: number | null;
        coords?: Coord[] | null;
        startCoords?: { asymptote: number; coords: [Coord, Coord] };
        type: "logarithm";
    }
    Index

    Properties

    asymptote?: number | null

    The x-value of the vertical asymptote (the line x = asymptote). The curve is defined on only one side of this line.

    coords?: Coord[] | null

    Two points along the logarithmic curve.

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

    The initial coordinates the graph renders with.

    type: "logarithm"