DsPdfJS API - v9.1.0
    Preparing search index...

    Type Alias Quadrilateral

    Represents a quadrilateral.

    type Quadrilateral = {
        a: Point;
        b: Point;
        c: Point;
        d: Point;
    }
    Index

    Properties

    a b c d

    Properties

    The first vertex of the quadrilateral. If initialized from a rectangle, corresponds to the rectangle's bottom left corner.

    The second vertex of the quadrilateral. If initialized from a rectangle, corresponds to the rectangle's top left corner.

    The third vertex of the quadrilateral. If initialized from a rectangle, corresponds to the rectangle's top right corner.

    The fourth vertex of the quadrilateral. If initialized from a rectangle, corresponds to the rectangle's bottom right corner.