Type Alias Point

type Point = {
    qx?: number;
    qy?: number;
}
Index
qx?: number

x-coordinate in pixels. The origin is the top left of the screen.

qy?: number

y-coordinate in pixels. The origin is the top left of the screen.