Skip to content
Snippets Groups Projects
Select Git revision
  • 32e1f7f5567968515f9fa5e3832a3945305bc5aa
  • master default protected
  • albertpiwonski-master-patch-57409
  • quadspheres
  • fix_Tmatrix_code_epsr_background
  • albertpiwonski-master-patch-12427
  • cavity
  • c1
8 results

Elasticity.pro

Blame
  • Tetrahedralize.h 694 B
    // Gmsh - Copyright (C) 1997-2011 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to <gmsh@geuz.org>.
    
    #ifndef _TETRAHEDRALIZE_H_
    #define _TETRAHEDRALIZE_H_
    
    #include "Plugin.h"
    
    extern "C"
    {
      GMSH_Plugin *GMSH_RegisterTetrahedralizePlugin();
    }
    
    class GMSH_TetrahedralizePlugin : public GMSH_PostPlugin
    {
     public:
      GMSH_TetrahedralizePlugin(){}
      std::string getName() const { return "Tetrahedralize"; }
      std::string getShortHelp() const
      {
        return "Mesh 3D point cloud";
      }
      std::string getHelp() const;
      int getNbOptions() const;
      StringXNumber* getOption(int iopt);  
      PView *execute(PView *);
    };
    
    #endif