Perseus
    Preparing search index...
    type PerseusGraphTypeSegment = {
        coords?: CollinearTuple[] | null;
        numSegments?: number;
        startCoords?: CollinearTuple[];
        type: "segment";
    }
    Index

    Properties

    coords?: CollinearTuple[] | null

    Expects a list of Coord tuples. Length should match the numSegments value.

    numSegments?: number

    The number of segments if a "segment" type. default: 1. Max: 6

    startCoords?: CollinearTuple[]

    The initial coordinates the graph renders with.

    type: "segment"