Skip to content
Snippets Groups Projects
Select Git revision
  • ce07aaf8147cb5781f79efdc01e4b045693b5360
  • master default protected
  • patches-4.14
  • steplayer
  • bl
  • pluginMeshQuality
  • fixBugsAmaury
  • hierarchical-basis
  • alphashapes
  • relaying
  • new_export_boris
  • oras_vs_osm
  • reassign_partitions
  • distributed_fwi
  • rename-classes
  • fix/fortran-api-example-t4
  • robust_partitions
  • reducing_files
  • fix_overlaps
  • 3115-issue-fix
  • 3023-Fillet2D-Update
  • 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

drawScales.cpp

Blame
  • 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