Class: Point


Summary

A point object containing top and left coordinates


Properties

PropertyDescription
 x Specifies the x-coordinate of a point.
 y Specifies the y-coordinate of a point.


Examples

var p = new Point;
p.x = 100;
p.y = 200;

var q = new Point;
q.x = 45;
q.y = 1060;

var w = new Point( 100, 20 );


See Also

  • Rect : isPointInRect


    Requirements

    build 1065