Skip to content
Snippets Groups Projects
Select Git revision
  • ee7dd7af9248377e0860ba05acfd67e18a70d988
  • master default protected
  • alphashapes
  • quadMeshingTools
  • cygwin_conv_path
  • macos_arm64
  • add-transfiniteautomatic-to-geo
  • patch_releases_4_10
  • HierarchicalHDiv
  • isuruf-master-patch-63355
  • hyperbolic
  • hexdom
  • hxt_update
  • jf
  • 1618-pythonocc-and-gmsh-api-integration
  • octreeSizeField
  • hexbl
  • alignIrregularVertices
  • getEdges
  • patch_releases_4_8
  • isuruf-master-patch-51992
  • 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
  • gmsh_4_8_4
  • gmsh_4_8_3
  • gmsh_4_8_2
  • gmsh_4_8_1
  • gmsh_4_8_0
  • gmsh_4_7_1
  • gmsh_4_7_0
41 results

meshGRegionDelaunayInsertion.cpp

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    GeoDefines.h 1.07 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 GEO_DEFINES_H
    #define GEO_DEFINES_H
    
    class Shape {
    public:
      int Type;
      int Num;
    };
    
    // type/100 gives (dimension+1)
    #define MSH_POINT 100
    #define MSH_POINT_BND_LAYER 101
    #define MSH_POINT_DISCRETE 102
    
    #define MSH_SEGM_LINE 200
    #define MSH_SEGM_SPLN 201
    #define MSH_SEGM_CIRC 202
    #define MSH_SEGM_CIRC_INV 203
    #define MSH_SEGM_ELLI 204
    #define MSH_SEGM_ELLI_INV 205
    #define MSH_SEGM_LOOP 206
    #define MSH_SEGM_BSPLN 207
    #define MSH_SEGM_NURBS 208
    #define MSH_SEGM_BEZIER 209
    #define MSH_SEGM_BND_LAYER 211
    #define MSH_SEGM_DISCRETE 212
    
    #define MSH_SURF_PLAN 300
    #define MSH_SURF_REGL 301
    #define MSH_SURF_TRIC 302
    #define MSH_SURF_BND_LAYER 303
    #define MSH_SURF_LOOP 304
    #define MSH_SURF_DISCRETE 305
    
    #define MSH_VOLUME 400
    #define MSH_VOLUME_DISCRETE 401
    
    #define MSH_PHYSICAL_POINT 500
    #define MSH_PHYSICAL_LINE 501
    #define MSH_PHYSICAL_SURFACE 502
    #define MSH_PHYSICAL_VOLUME 503
    
    #endif