Skip to content
Snippets Groups Projects
Select Git revision
  • 4075da9a1fedb4d7daf861b1dc51342fa77a20db
  • master default
  • library-names
  • fix_script_header
  • fix_libdir
  • fix_cmake_hdf5
  • partition
  • cgnsUnstructured
  • partitioning
  • HighOrderBLCurving
  • gmsh_3_0_5
  • gmsh_3_0_4
  • gmsh_3_0_3
  • gmsh_3_0_2
  • gmsh_3_0_1
  • gmsh_3_0_0
  • gmsh_2_16_0
  • gmsh_2_15_0
  • gmsh_2_14_1
  • gmsh_2_14_0
  • gmsh_2_13_2
  • gmsh_2_13_1
  • gmsh_2_12_0
  • gmsh_2_11_0
  • gmsh_2_10_1
  • gmsh_2_10_0
  • gmsh_2_9_3
  • gmsh_2_9_2
  • gmsh_2_9_1
  • gmsh_2_9_0
30 results

Callbacks.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)