Point Class
Represents a point on a 2 dimensional x / y coordinate system.
Example
var point = new createjs.Point(0, 100);
Constructor
Methods
clone
()
Point
Returns a clone of the Point instance.
Returns:
Point:
a clone of the Point instance.
copy
(
Point
chainable
-
point
Copies all properties from the specified point to this point.
Parameters:
-
point
PointThe point to copy properties from.
Returns:
Point:
This point. Useful for chaining method calls.