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 w w. ja va2 s . c o m*/ /** * @note A geometry object in space contains at least one point, * otherwise it is called "an empty geometry object". Every geometry * objects, except points, divide space into three parts, called * the interior, the boundary, the exterior, respectively. */ public interface IGeomObject { /** * @note judge whether a geometry object is emtpy. */ public boolean isEmpty(); /** * @note get mininum out bound of the geometry object. */ public IEnvelope envelope(); }