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

📄 geometry3d.h

📁 很多二维 三维几何计算算法 C++ 类库
💻 H
字号:
/****************************************************************** * Core Library Version 1.7, August 2004 * Copyright (c) 1995-2002 Exact Computation Project *  * File: geometry3d.h * * Written by *       Shubin Zhao (shubinz@cs.nyu.edu) (2001) * * WWW URL: http://cs.nyu.edu/exact/ * Email: exact@cs.nyu.edu * * $Id: geometry3d.h 37060 2007-03-13 18:10:39Z reichel $ *****************************************************************/#ifndef CORE_GEOMETRY3D_H#define CORE_GEOMETRY3D_H#ifndef CORE_LEVEL#  define CORE_LEVEL 3#endif#include <CGAL/CORE/linearAlgebra.h>class Point3d;class Line3d;class Segment3d;class Plane3d;class Triangle3d;class Polygon3d;#include <CGAL/CORE/geom3d/point3d.h>#include <CGAL/CORE/geom3d/line3d.h>#include <CGAL/CORE/geom3d/segment3d.h>#include <CGAL/CORE/geom3d/plane3d.h>#include <CGAL/CORE/geom3d/triangle3d.h>#include <CGAL/CORE/geom3d/polygon3d.h>// automaticall link necessary static library under visual c++#ifdef _MSC_VER	#if CORE_LEVEL == 1		#ifdef _DEBUG			#pragma comment(lib, "corexDebug_level1.lib")		#else			#pragma comment(lib, "corex_level1.lib")		#endif	#elif CORE_LEVEL == 2		#ifdef _DEBUG			#pragma comment(lib, "corexDebug_level2.lib")		#else			#pragma comment(lib, "corex_level2.lib")		#endif	#elif CORE_LEVEL == 3		#ifdef _DEBUG			#pragma comment(lib, "corexDebug_level3.lib")		#else			#pragma comment(lib, "corex_level3.lib")		#endif	#endif#endif#endif

⌨️ 快捷键说明

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