Perseus
    Preparing search index...
    type PerseusGraphTypePolygon = {
        coords?: Coord[] | null;
        match?: "similar" | "congruent" | "approx" | "exact";
        numSides?: number | "unlimited";
        showAngles?: boolean;
        showSides?: boolean;
        snapTo?: "grid" | "angles" | "sides";
        startCoords?: Coord[];
        type: "polygon";
    }
    Index

    Properties

    coords?: Coord[] | null
    match?: "similar" | "congruent" | "approx" | "exact"

    How to match the answer. If missing, defaults to exact matching.

    numSides?: number | "unlimited"

    The number of sides. default: 3. "unlimited" if no limit

    showAngles?: boolean

    Whether to show the angle measurements. default: false

    showSides?: boolean

    Whether to show side measurements. default: false

    snapTo?: "grid" | "angles" | "sides"

    How to snap points. e.g. "grid", "angles", or "sides". default: grid

    startCoords?: Coord[]

    The initial coordinates the graph renders with.

    type: "polygon"