Skip to content
Snippets Groups Projects
Select Git revision
  • 331bb9b0caf5446dad8489afce5063dd708d7002
  • master default protected
2 results

CMakeLists.txt

Blame
  • Mesh.h 11.16 KiB
    #ifndef _MESH_H_
    #define _MESH_H_
    
    // Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle
    //
    // This program is free software; you can redistribute it and/or modify
    // it under the terms of the GNU General Public License as published by
    // the Free Software Foundation; either version 2 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful,
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU General Public License for more details.
    //
    // You should have received a copy of the GNU General Public License
    // along with this program; if not, write to the Free Software
    // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
    // USA.
    // 
    // Please report all bugs and problems to <gmsh@geuz.org>.
    
    #include "List.h"
    #include "Tree.h"
    #include "Vertex.h"
    #include "Element.h"
    #include "Simplex.h"
    #include "Edge.h"
    #include "ExtrudeParams.h"
    #include "STL.h"
    #include "VertexArray.h"
    
    #define FORMAT_MSH           1
    #define FORMAT_UNV           2
    #define FORMAT_GREF          3
    #define FORMAT_XPM           4
    #define FORMAT_PS            5
    #define FORMAT_BMP           6
    #define FORMAT_GIF           7
    #define FORMAT_GEO           8
    #define FORMAT_JPEG          9
    #define FORMAT_AUTO          10
    #define FORMAT_PPM           11
    #define FORMAT_YUV           12
    #define FORMAT_DMG           13
    #define FORMAT_SMS           14
    #define FORMAT_OPT           15
    #define FORMAT_VTK           16
    #define FORMAT_JPEGTEX       17
    #define FORMAT_TEX           18
    #define FORMAT_VRML          19
    #define FORMAT_EPS           20
    #define FORMAT_EPSTEX        21
    #define FORMAT_PNG           22
    #define FORMAT_PNGTEX        23
    #define FORMAT_PDF           24
    #define FORMAT_PDFTEX        25
    #define FORMAT_PS_RASTER     26
    #define FORMAT_EPS_RASTER    27
    #define FORMAT_PDF_RASTER    28
    #define FORMAT_EPSTEX_RASTER 29
    #define FORMAT_PDFTEX_RASTER 30
    #define FORMAT_LC_SUR        31
    #define FORMAT_LC_VOL        32
    
    #define CONV_VALUE    0.8
    
    #define VIS_GEOM  (1<<0)
    #define VIS_MESH  (1<<1)