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

📄 directededge.inl

📁 在Linux下做的QuadTree的程序
💻 INL
字号:
/********************************************************************** * $Id: DirectedEdge.inl 1820 2006-09-06 16:54:23Z mloskot $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * Copyright (C) 2005-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_GEOMGRAPH_DIRECTEDEDGE_INL#define GEOS_GEOMGRAPH_DIRECTEDEDGE_INL#include <geos/geomgraph/DirectedEdge.h>namespace geos {namespace geomgraph { // geos::geomgraph//INLINE Edge*//DirectedEdge::getEdge() { return edge; }INLINE voidDirectedEdge::setInResult(bool v) { isInResultVar=v; }INLINE boolDirectedEdge::isInResult() { return isInResultVar; }INLINE boolDirectedEdge::isVisited() { return isVisitedVar; }INLINE voidDirectedEdge::setVisited(bool v) { isVisitedVar=v; }INLINE voidDirectedEdge::setEdgeRing(EdgeRing *er) { edgeRing=er; }INLINE EdgeRing*DirectedEdge::getEdgeRing() { return edgeRing; }INLINE voidDirectedEdge::setMinEdgeRing(EdgeRing *mer) { minEdgeRing=mer; }INLINE EdgeRing*DirectedEdge::getMinEdgeRing() { return minEdgeRing; }INLINE intDirectedEdge::getDepth(int position){ return depth[position]; }INLINE DirectedEdge*DirectedEdge::getSym() { return sym; }INLINE boolDirectedEdge::isForward() { return isForwardVar; }INLINE voidDirectedEdge::setSym(DirectedEdge *de) { sym=de; }INLINE DirectedEdge*DirectedEdge::getNext() { return next; }INLINE voidDirectedEdge::setNext(DirectedEdge *newNext) { next=newNext; }INLINE DirectedEdge*DirectedEdge::getNextMin() { return nextMin; }INLINE voidDirectedEdge::setNextMin(DirectedEdge *nm) { nextMin=nm; }} // namespace geos::geomgraph} // namespace geos#endif // GEOS_GEOMGRAPH_DIRECTEDEDGE_INL

⌨️ 快捷键说明

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