org.opengis.geometry.coordinate.PolyhedralSurface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gt-opengis Show documentation
Show all versions of gt-opengis Show documentation
Standard interfaces implemented throughout the library.
/*
* GeoTools - The Open Source Java GIS Toolkit
* http://geotools.org
*
* (C) 2011, Open Source Geospatial Foundation (OSGeo)
* (C) 2003-2005, Open Geospatial Consortium Inc.
*
* All Rights Reserved. http://www.opengis.org/legal/
*/
package org.opengis.geometry.coordinate;
import static org.opengis.annotation.Obligation.*;
import static org.opengis.annotation.Specification.*;
import java.util.List;
import org.opengis.annotation.UML;
import org.opengis.geometry.primitive.Surface;
/**
* A surface composed of {@linkplain Polygon polygon surfaces} connected along their common boundary
* curves. This differs from {@link Surface} only in the restriction on the types of surface patches
* acceptable.
*
* @version ISO 19107
* @author Martin Desruisseaux (IRD)
* @since GeoAPI 2.0
* @see GeometryFactory#createPolyhedralSurface
*/
@UML(identifier = "GM_PolyhedralSurface", specification = ISO_19107)
public interface PolyhedralSurface extends Surface {
/** Associates this surface with its individual facet polygons. */
@UML(identifier = "patch", obligation = MANDATORY, specification = ISO_19107)
List extends Polygon> getPatches();
}