trapezoidal_decomposition_2_misc.h

来自「CGAL is a collaborative effort of severa」· C头文件 代码 · 共 76 行

H
76
字号
// Copyright (c) 1997  Tel-Aviv University (Israel).// All rights reserved.//// This file is part of CGAL (www.cgal.org); you may redistribute it under// the terms of the Q Public License version 1.0.// See the file LICENSE.QPL distributed with CGAL.//// Licensees holding a valid commercial license may use this file in// accordance with the commercial license agreement provided with the software.//// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.//// $Source: /CVSROOT/CGAL/Packages/Trapezoidal_decomposition/include/CGAL/Trapezoidal_decomposition_2/Trapezoidal_decomposition_2_misc.h,v $// $Revision: 1.2 $ $Date: 2003/09/18 10:26:01 $// $Name:  $//// Author(s)     : Oren Nechushtan <theoren@math.tau.ac.il>//                 Iddo Hanniel <hanniel@math.tau.ac.il>#ifndef CGAL_TRAPEZOIDAL_DECOMPOSITION_2_MISC_H#define CGAL_TRAPEZOIDAL_DECOMPOSITION_2_MISC_H#ifndef CGAL_TD_TENTUPLE_H#include <CGAL/Trapezoidal_decomposition_2/Td_ninetuple.h>#endif#ifndef CGAL_TWOTUPLE_H#include <CGAL/Twotuple.h>#endif#ifndef CGAL_TD_DAG_H#include <CGAL/Td_dag.h>#endif#define CGAL_TRAPEZOIDAL_DECOMPOSITION_2_DELETE_SIGNATURE 0xffffffff#define CGAL_TRAPEZOIDAL_DECOMPOSITION_2_LEFT_UNBOUNDED 0x1#define CGAL_TRAPEZOIDAL_DECOMPOSITION_2_RIGHT_UNBOUNDED 0x2#define CGAL_TRAPEZOIDAL_DECOMPOSITION_2_BOTTOM_UNBOUNDED 0x4#define CGAL_TRAPEZOIDAL_DECOMPOSITION_2_TOP_UNBOUNDED 0x8#define CGAL_TRAPEZOIDAL_DECOMPOSITION_2_TOTALLY_UNBOUNDED \	(CGAL_TRAPEZOIDAL_DECOMPOSITION_2_LEFT_UNBOUNDED| \	CGAL_TRAPEZOIDAL_DECOMPOSITION_2_RIGHT_UNBOUNDED| \	CGAL_TRAPEZOIDAL_DECOMPOSITION_2_BOTTOM_UNBOUNDED| \	CGAL_TRAPEZOIDAL_DECOMPOSITION_2_TOP_UNBOUNDED) #define CGAL_TRAPEZOIDAL_DECOMPOSITION_2_BOUNDED 0#define CGAL_TD_DEFAULT_DEPTH_THRESHOLD 2#define CGAL_TD_DEFAULT_SIZE_THRESHOLD 2#ifndef _MSC_VER#ifndef __BORLANDC__#if !defined __GNUC__ || __GNUC__>2 || __GNUC__==2 && __GNUC_MINOR__>=95#define CGAL_PM_FRIEND_CLASS#endif#endif#endif#endif

⌨️ 快捷键说明

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