The Point object represents a point in the two dimensional space of the Paper.js project. It is also used to represent two dimensional vector objects.
Example:Create a point at x: 10, y: 5
var point = new Point(10, 5);
console.log(point.x); // 10
console.log(point.y); // 5
Point(x, y)
Point(array)
Point(object)
Point(size)
Point(point)
+number
, +point
-number
, -point
*number
, *point
/number
, /point
%number
, %point
x
y
length