Interface CreateQuadrilateralOptions

interface CreateQuadrilateralOptions {
    color: string;
    coordinates?: CreateQuadrilateralOptionsCoordinates;
    height: Scriptable<number>;
    opacity?: Scriptable<number>;
    width: Scriptable<number>;
}

Properties

color: string

Coordinates that can be used to precisely define where the Quadrilateral should be on the screen

height: Scriptable<number>
opacity?: Scriptable<number>
width: Scriptable<number>