📄 boundingpolygon.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 + -