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

grating3D_data_halfellipsoid.geo

Blame
  • DuplicateBoundaries.h 1003 B
    // Gmsh - Copyright (C) 1997-2013 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to the public mailing list <gmsh@geuz.org>.
    
    #ifndef _DUPLICATEBOUNDARIES_H_
    #define _DUPLICATEBOUNDARIES_H_
    
    #include "Plugin.h"
    
    extern "C"
    {
      GMSH_Plugin *GMSH_RegisterDuplicateBoundariesPlugin();
    }
    
    class GMSH_DuplicateBoundariesPlugin : public GMSH_PostPlugin
    {
     public:
      GMSH_DuplicateBoundariesPlugin(){}
      std::string getName() const { return "DuplicateBoundaries"; }
      std::string getShortHelp() const
      {
        return "Duplicate Boundaries";
      }
      std::string getHelp() const;
      int getNbOptions() const;
      StringXNumber* getOption(int iopt);
      double abs(double x);
      PView *execute(PView *);
      PView *execute2D(PView *);
      PView *execute2DWithBound(PView *);
      PView *executeDuplicate(PView *);
      PView *executeBis(PView *);
      PView *executeTer(PView *);
      PView *executeFourth(PView *);
      PView *ComputeBestSeeds(PView *);
    };
    
    #endif