📄 ring.java
字号:
/*$************************************************************************************************ ** ** $Id: Ring.java,v 1.3 2004/03/09 20:02:56 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/spatialschema/geometry/primitive/Ring.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.spatialschema.geometry.primitive;// OpenGIS direct dependenciesimport org.opengis.spatialschema.geometry.complex.CompositeCurve;/** * Represent a single connected component of a {@linkplain SurfaceBoundary surface boundary}. * It consists of a number of references to {@linkplain OrientableCurve orientable curves} * connected in a cycle (an object whose boundary is empty). A <code>Ring</code> is structurally * similar to a {@linkplain CompositeCurve composite curve} in that the end point of each * {@linkplain OrientableCurve orientable curve} in the sequence is the start point of the next * {@linkplain OrientableCurve orientable curve} in the sequence. Since the sequence is circular, * there is no exception to this rule. Each ring, like all boundaries is a cycle and each ring is * simple. * <br><br> * Even though each <code>Ring</code> is simple, the boundary need not be simple. The easiest * case of this is where one of the interior rings of a surface is tangent to its exterior ring. * Implementations may enforce stronger restrictions on the interaction of boundary elements. * * @UML type GM_Ring * @author ISO/DIS 19107 * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * @version 2.0 * * @see SurfaceBoundary * @see Shell */public interface Ring extends CompositeCurve { /** * Always returns <code>true</code> since ring objects are simples. * * @return Always <code>true</code>. */ public boolean isSimple();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -