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

📄 linemergedirectededge.h

📁 在Linux下做的QuadTree的程序
💻 H
字号:
/********************************************************************** * $Id: LineMergeDirectedEdge.h 1820 2006-09-06 16:54:23Z mloskot $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * Copyright (C) 2006 Refractions Research Inc. * * This is free software; you can redistribute and/or modify it under * the terms of the GNU Lesser General Public Licence as published * by the Free Software Foundation.  * See the COPYING file for more information. * **********************************************************************/#ifndef GEOS_OP_LINEMERGE_LINEMERGEDIRECTEDEDGE_H#define GEOS_OP_LINEMERGE_LINEMERGEDIRECTEDEDGE_H#include <geos/planargraph/DirectedEdge.h> // for inheritance// Forward declarations namespace geos {	namespace geom { 		class Coordinate;		//class LineString;	}	namespace planargraph { 		class Node;	}}namespace geos {namespace operation { // geos::operationnamespace linemerge { // geos::operation::linemerge/** * \brief * A planargraph::DirectedEdge of a LineMergeGraph.  * */class LineMergeDirectedEdge: public planargraph::DirectedEdge {public:	/**	 * Constructs a LineMergeDirectedEdge connecting the <code>from</code>	 * node to the <code>to</code> node.	 *	 * @param directionPt	 *        specifies this DirectedEdge's direction (given by an	 *	  imaginary line from the <code>from</code> node to	 *	  <code>directionPt</code>)	 *	 * @param edgeDirection	 *        whether this DirectedEdge's direction is the same as or	 *        opposite to that of the parent Edge (if any)	 */  	LineMergeDirectedEdge(planargraph::Node *from,			planargraph::Node *to,			const geom::Coordinate& directionPt,			bool edgeDirection);	/**	* Returns the directed edge that starts at this directed edge's end point, or null	* if there are zero or multiple directed edges starting there.  	* @return	*/	LineMergeDirectedEdge* getNext();};} // namespace geos::operation::linemerge} // namespace geos::operation} // namespace geos#endif // GEOS_OP_LINEMERGE_LINEMERGEDIRECTEDEDGE_H/********************************************************************** * $Log$ * Revision 1.1  2006/03/22 10:13:53  strk * opLinemerge.h split * **********************************************************************/

⌨️ 快捷键说明

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