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

Properties

color: string

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

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