1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
/*=========================================================================
Program: VMTK
Module: $RCSfile: vtkvmtkConstants.h,v $
Language: C++
Date: $Date: 2005/11/15 17:39:24 $
Version: $Revision: 1.3 $
Copyright (c) Luca Antiga, David Steinman. All rights reserved.
See LICENCE file for details.
Portions of this code are covered under the VTK copyright.
See VTKCopyright.txt or http://www.kitware.com/VTKCopyright.htm
for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef VTK_VMTK_LARGE_INTEGER
#define VTK_VMTK_LARGE_INTEGER 2147483647
#endif
#ifndef VTK_VMTK_FLOAT_TOL
#define VTK_VMTK_FLOAT_TOL 1.0E-6
#endif
#ifndef VTK_VMTK_LARGE_FLOAT
#define VTK_VMTK_LARGE_FLOAT 1.0E+16
#endif
#ifndef VTK_VMTK_DOUBLE_TOL
#define VTK_VMTK_DOUBLE_TOL 1.0E-12
#endif
#ifndef VTK_VMTK_LARGE_DOUBLE
#define VTK_VMTK_LARGE_DOUBLE 1.0E+32
#endif
#ifndef VTK_VMTK_PIVOTING_TOL
#define VTK_VMTK_PIVOTING_TOL 1.0E-12
#endif
#ifndef VTK_VMTK_ITEM_TYPES
#define VTK_VMTK_ITEM_TYPES
enum
{
VTK_VMTK_EMPTY_NEIGHBORHOOD,
VTK_VMTK_POLYDATA_NEIGHBORHOOD,
VTK_VMTK_POLYDATA_MANIFOLD_NEIGHBORHOOD,
VTK_VMTK_POLYDATA_MANIFOLD_EXTENDED_NEIGHBORHOOD,
VTK_VMTK_UNSTRUCTUREDGRID_NEIGHBORHOOD,
VTK_VMTK_EMPTY_STENCIL,
VTK_VMTK_UMBRELLA_STENCIL,
VTK_VMTK_AREA_WEIGHTED_UMBRELLA_STENCIL,
VTK_VMTK_GRADIENT_STENCIL,
VTK_VMTK_FE_LAPLACE_BELTRAMI_STENCIL,
VTK_VMTK_FVFE_LAPLACE_BELTRAMI_STENCIL,
VTK_VMTK_SPARSE_MATRIX_ROW,
};
#endif
|