Implements a 2-dimensional vector with double precision coordinates.
| mxPoint | Implements a 2-dimensional vector with double precision coordinates. |
| Functions | |
| mxPoint | Constructs a new point for the optional x and y coordinates. |
| Variables | |
| x | Holds the x-coordinate of the point. |
| y | Holds the y-coordinate of the point. |
| Functions | |
| equals | Returns true if the given object equals this point. |
| clone | Returns a clone of this mxPoint. |
mxPoint.prototype.clone = function()
Returns a clone of this mxPoint.
Constructs a new point for the optional x and y coordinates.
function mxPoint( x, y )
Holds the x-coordinate of the point.
mxPoint.prototype.x
Holds the y-coordinate of the point.
mxPoint.prototype.y
Returns true if the given object equals this point.
mxPoint.prototype.equals = function( obj )
Returns a clone of this mxPoint.
mxPoint.prototype.clone = function()