⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 curveboundary.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: CurveBoundary.java,v 1.2 2004/03/09 20:02:56 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/spatialschema/geometry/primitive/CurveBoundary.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.spatialschema.geometry.primitive;/** * The boundary of {@linkplain Curve curves}. * A <code>CurveBoundary</code> contains two {@linkplain Point point} references * ({@linkplain #getStartPoint start point} and {@linkplain #getEndPoint end point}). * * @UML type GM_CurveBoundary * @author ISO/DIS 19107 * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version 2.0 */public interface CurveBoundary extends PrimitiveBoundary {    /**     * Returns the start point.     *     * @return The start point.     *     * @see #getEndPoint     */    public Point getStartPoint();    /**     * Returns the end point.     *     * @return The end point.     *     * @see #getStartPoint     */    public Point getEndPoint();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -