Type Alias Point

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

Properties

Properties

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.