Skip to content
Snippets Groups Projects
Select Git revision
  • 5eef9c7515185489c302e7831c495572e81133b4
  • master default protected
  • hierarchical-basis
  • revert-ef4a3a4f
  • patch_releases_4_14
  • overlaps_tags_and_distributed_export
  • overlaps_tags_and_distributed_export_rebased
  • relaying
  • alphashapes
  • steplayer
  • bl
  • pluginMeshQuality
  • fixBugsAmaury
  • new_export_boris
  • oras_vs_osm
  • reassign_partitions
  • distributed_fwi
  • rename-classes
  • fix/fortran-api-example-t4
  • robust_partitions
  • reducing_files
  • gmsh_4_14_0
  • gmsh_4_13_1
  • gmsh_4_13_0
  • gmsh_4_12_2
  • gmsh_4_12_1
  • gmsh_4_12_0
  • gmsh_4_11_1
  • gmsh_4_11_0
  • gmsh_4_10_5
  • gmsh_4_10_4
  • gmsh_4_10_3
  • gmsh_4_10_2
  • gmsh_4_10_1
  • gmsh_4_10_0
  • gmsh_4_9_5
  • gmsh_4_9_4
  • gmsh_4_9_3
  • gmsh_4_9_2
  • gmsh_4_9_1
  • gmsh_4_9_0
41 results

Tetrahedralize.h

Blame
  • GmshDefines.h 6.86 KiB
    // Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
    
    #ifndef GMSH_DEFINES_H
    #define GMSH_DEFINES_H
    
    // IO file formats (numbers should not be changed)
    #define FORMAT_MSH          1
    #define FORMAT_UNV          2
    #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_OPT          15
    #define FORMAT_VTK          16
    #define FORMAT_MPEG         17
    #define FORMAT_TEX          18
    #define FORMAT_VRML         19
    #define FORMAT_EPS          20
    #define FORMAT_MAIL         21
    #define FORMAT_PNG          22
    #define FORMAT_TXT          23
    #define FORMAT_PDF          24
    #define FORMAT_RMED         25
    #define FORMAT_POS          26
    #define FORMAT_STL          27
    #define FORMAT_P3D          28
    #define FORMAT_SVG          29
    #define FORMAT_MESH         30
    #define FORMAT_BDF          31
    #define FORMAT_CGNS         32
    #define FORMAT_MED          33
    #define FORMAT_DIFF         34
    #define FORMAT_BREP         35
    #define FORMAT_STEP         36
    #define FORMAT_IGES         37
    #define FORMAT_IR3          38
    #define FORMAT_INP          39
    #define FORMAT_PLY2         40
    #define FORMAT_CELUM        41
    #define FORMAT_SU2          42
    #define FORMAT_MPEG_PREVIEW 43
    #define FORMAT_PGF          44
    #define FORMAT_PVTU         45
    #define FORMAT_X3D          46
    #define FORMAT_TOCHNOG      47
    #define FORMAT_TIKZ         48
    #define FORMAT_NEU          49
    #define FORMAT_MATLAB       50
    #define FORMAT_KEY          51
    
    // Element types
    #define TYPE_PNT     1
    #define TYPE_LIN     2
    #define TYPE_TRI     3
    #define TYPE_QUA     4
    #define TYPE_TET     5
    #define TYPE_PYR     6
    #define TYPE_PRI     7
    #define TYPE_HEX     8
    #define TYPE_POLYG   9
    #define TYPE_POLYH   10
    #define TYPE_XFEM    11