ugkgeometry.cpp

来自「linux下一款GIS程序源码」· C++ 代码 · 共 100 行

CPP
100
字号
// ugkgeometry.cpp: implementation of the UGKGeometry class.////////////////////////////////////////////////////////////////////////#include "ugkgeometry.h"/******************************************************      constructor and destructor ******************************************************/UGKGeometry::UGKGeometry(){}UGKGeometry::~UGKGeometry(){}/*************************************************************//*                             closeRings()                             *//************************************************************//** * Force rings to be closed. * * If this geometry, or any contained geometries has polygon rings that  * are not closed, they will be closed by adding the starting point at * the end.  */void UGKGeometry::closeRings(){}/************************************************************//*                             Intersects()                             *//************************************************************/UGKBool  UGKGeometry::Intersects( UGKGeometry *poOtherGeom )const {	return FALSE;}/*************************************************************//*                             Disjoint()                               *//************************************************************/UGKBool  UGKGeometry::Disjoint( const UGKGeometry *poOtherGeom ) const{	return FALSE;}/**************************************************************//*                             Touches()                                *//*************************************************************/UGKBool  UGKGeometry::Touches( const UGKGeometry *poOtherGeom ) const{	return FALSE;}/*************************************************************//*                             Crosses()                                *//*************************************************************/UGKBool  UGKGeometry::Crosses( const UGKGeometry *poOtherGeom ) const{	return FALSE;}/**************************************************************//*                             Within()                                 *//*************************************************************/UGKBool  UGKGeometry::Within( const UGKGeometry *poOtherGeom ) const{	return FALSE;}/*************************************************************//*                             Contains()                               *//*************************************************************/UGKBool  UGKGeometry::Contains( const UGKGeometry *poOtherGeom ) const{	return FALSE;}/*************************************************************//*                             Overlaps()                               *//*************************************************************/UGKBool  UGKGeometry::Overlaps( const UGKGeometry *poOtherGeom ) const{	return FALSE;}

⌨️ 快捷键说明

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