📄 compositesurface.java
字号:
/*$************************************************************************************************ ** ** $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -