1  /**
     2   * com.sekati.geom.IPoint
     3   * @version 1.0.5
     4   * @author jason m horwitz | sekati.com
     5   * Copyright (C) 2007  jason m horwitz, Sekat LLC. All Rights Reserved.
     6   * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
     7   */
     8   
     9  import com.sekati.core.CoreInterface;
    10  import com.sekati.geom.Point;
    11  
    12  /**
    13   * Interface describing {@link com.sekati.geom.Point}
    14   */
    15  interface com.sekati.geom.IPoint extends CoreInterface {
    16  
    17  	function isEqual(p:Point):Boolean;
    18  
    19  	function getDistance(p:Point):Number;
    20  
    21  	function displace(nX:Number, nY:Number):Point;
    22  
    23  	function offset(x:Number, y:Number):Void;
    24  
    25  	function clone():Point;
    26  }