home *** CD-ROM | disk | FTP | other *** search
/ ftp.novell.com / 2014.06.ftp.novell.com.tar / ftp.novell.com / forge / camtasia.msi / Cabs.w1.cab / camtasia_player_ext.swf9 / scripts / __Packages / com / techsmith / utils / Point.as < prev    next >
Text File  |  2009-08-17  |  228b  |  17 lines

  1. class com.techsmith.utils.Point
  2. {
  3.    var x = 0;
  4.    var y = 0;
  5.    function Point(x, y)
  6.    {
  7.       if(x != null)
  8.       {
  9.          this.x = x;
  10.       }
  11.       if(y != null)
  12.       {
  13.          this.y = y;
  14.       }
  15.    }
  16. }
  17.