A Point or an array of two numbers representing x and y screen coordinates in pixels.
x
y
let p1 = new Point(-77, 38); // a PointLike which is a Pointlet p2 = [-77, 38]; // a PointLike which is an array of two numbers Copy
let p1 = new Point(-77, 38); // a PointLike which is a Pointlet p2 = [-77, 38]; // a PointLike which is an array of two numbers
A Point or an array of two numbers representing
x
andy
screen coordinates in pixels.