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

📄 ugkgeometry.cpp

📁 linux下一款GIS程序源码
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -