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

Properties

color: Scriptable<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>