compositesurface.java
来自「GEo 地理操作源代码」· Java 代码 · 共 50 行
JAVA
50 行
/*$************************************************************************************************ ** ** $Id: CompositeSurface.java,v 1.6 2004/03/19 04:11:44 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/spatialschema/geometry/complex/CompositeSurface.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.spatialschema.geometry.complex;// J2SE direct dependenciesimport java.util.List;// OpenGIS direct dependenciesimport org.opengis.spatialschema.geometry.primitive.OrientableSurface;/** * A {@linkplain Complex complex} with all the geometric properties of a surface. Thus, this * composite can be considered as a type of {@linkplain OrientableSurface orientable surface}. * Essentially, a composite surface is a collection of oriented surfaces that join in pairs on * common boundary curves and which, when considered as a whole, form a single surface. * * @UML type GM_CompositeSurface * @author ISO/DIS 19107 * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * @version 2.0 * * @revisit This interface extends (indirectly) both {@link org.opengis.spatialschema.geometry.primitive.Primitive} and * {@link org.opengis.spatialschema.geometry.complex.Complex}. Concequently, there is a clash in the semantics * of some set theoretic operation. Specifically, <code>Primitive.contains(...)</code> * (returns FALSE for end points) is different from <code>Complex.contains(...)</code> * (returns TRUE for end points). */public interface CompositeSurface extends Composite, OrientableSurface { /** * Returns the list of orientable surfaces in this composite. * * To get a full representation of the elements in the {@linkplain Complex complex}, the * {@linkplain org.opengis.spatialschema.geometry.primitive.Curve curves} and {@link org.opengis.spatialschema.geometry.primitive.Point * points} on the boundary of the generator set of {@linkplain org.opengis.spatialschema.geometry.primitive.Surface * surfaces} would be added to the curves in the generator list. * * @return The list of orientable surfaces in this composite. * @UML association generator */ public List getGenerators();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?