⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 boundingpolygon.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/************************************************************************************************** ** ** $Id: BoundingPolygon.java,v 1.2 2004/03/04 15:56:26 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/go/geometry/BoundingPolygon.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.go.geometry;import org.opengis.spatialschema.geometry.DirectPosition;/** * The <code>BoundingPolygon</code> class represents a bounds object * whose region is defined by a polygon with <code>DirectPosition</code> * vertices. * * @author  Open GIS Consortium, Inc. * @version $Revision: 1.2 $, $Date: 2004/03/04 15:56:26 $ */public interface BoundingPolygon extends Bounds {        /**     * Returns the list of vertices for this object.     */    public DirectPosition[] getVertices();        /**     * Sets the list of vertices for this object.     */    public void setVertices(DirectPosition[] vertices);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -