Skip to content
Snippets Groups Projects
Select Git revision
  • 96fed267344076ef133c3594261e11b54ccafe94
  • 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

t2.cpp

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    gmsh.cpp 139.38 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.
    
    #include <sstream>
    #include "GmshConfig.h"
    #include "GmshDefines.h"
    #include "GmshGlobal.h"
    #include "MallocUtils.h"
    #include "GModel.h"
    #include "GModelIO_GEO.h"
    #include "GModelIO_OCC.h"
    #include "GVertex.h"
    #include "GEdge.h"
    #include "GFace.h"
    #include "GRegion.h"
    #include "discreteVertex.h"
    #include "discreteEdge.h"
    #include "discreteFace.h"
    #include "discreteRegion.h"
    #include "partitionVertex.h"
    #include "partitionEdge.h"
    #include "partitionFace.h"
    #include "partitionRegion.h"
    #include "ghostEdge.h"
    #include "ghostFace.h"
    #include "ghostRegion.h"
    #include "MVertex.h"
    #include "MPoint.h"
    #include "MLine.h"
    #include "MTriangle.h"
    #include "MQuadrangle.h"
    #include "MTetrahedron.h"
    #include "MHexahedron.h"
    #include "MPrism.h"
    #include "MPyramid.h"
    #include "ExtrudeParams.h"
    #include "StringUtils.h"
    #include "Context.h"
    #include "polynomialBasis.h"
    #include "pyramidalBasis.h"
    #include "OS.h"
    
    #if defined(HAVE_MESH)
    #include "Field.h"
    #include "meshGFaceOptimize.h"
    #endif
    
    #if defined(HAVE_POST)
    #include "PView.h"
    #include "PViewData.h"
    #include "PViewDataList.h"
    #include "PViewDataGModel.h"
    #include "PViewOptions.h"
    #endif
    
    #if defined(HAVE_PLUGINS)
    #include "PluginManager.h"
    #endif
    
    #if defined(HAVE_OPENGL)
    #include "drawContext.h"
    #endif
    
    #if defined(HAVE_FLTK)
    #include "FlGui.h"
    #endif
    
    #if defined(HAVE_ONELAB)