Back to project page zmap.
The source code is released under:
GNU Lesser General Public License
If you think the Android project zmap listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.zmap.geom; /*from w ww .jav a 2 s . c o m*/ public interface ILineOperator { public double distanceTo(IPoint point); public double nearest(IPoint point, IPoint result); public boolean isCross(ILineOperator other); public IPointCollection intersect(ILineOperator other); }