Perseus
    Preparing search index...
    type PerseusGraphTypeAngle = {
        allowReflexAngles?: boolean;
        angleOffsetDeg?: number;
        coords?: [Coord, Coord, Coord];
        match?: "congruent";
        showAngles?: boolean;
        snapDegrees?: number;
        startCoords?: [Coord, Coord, Coord];
        type: "angle";
    }
    Index

    Properties

    allowReflexAngles?: boolean

    Allow Reflex Angles if an "angle" type. default: true

    angleOffsetDeg?: number

    The angle offset in degrees if an "angle" type. default: 0

    coords?: [Coord, Coord, Coord]

    The angle represented as ∠ABC; point B is the vertex, while rays BA and BC are the sides of the angle.

    match?: "congruent"

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

    showAngles?: boolean

    Whether to show the angle measurements. default: false

    snapDegrees?: number

    Snap to degree increments if an "angle" type. default: 1

    startCoords?: [Coord, Coord, Coord]

    The initial state for this graph, represented as ∠ABC, where point B is the vertex, while rays BA and BC form the angle.

    type: "angle"