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; // w w w . j a v a 2 s . co m /** * @note Point collection */ public interface IPointCollection { /** * @note Get number of point in this collection. */ public int pointCount(); /** * @note Get a specified point. */ public IPoint getPoint(int i); }