Skip to content
Snippets Groups Projects
Select Git revision
  • 0b598844c2a40a91fa80759bc62ed567d6bec701
  • master default protected
  • patch_releases_4_14
  • overlaps_tags_and_distributed_export
  • overlaps_tags_and_distributed_export_rebased
  • relaying
  • alphashapes
  • steplayer
  • bl
  • pluginMeshQuality
  • fixBugsAmaury
  • hierarchical-basis
  • new_export_boris
  • oras_vs_osm
  • reassign_partitions
  • distributed_fwi
  • rename-classes
  • fix/fortran-api-example-t4
  • robust_partitions
  • reducing_files
  • fix_overlaps
  • 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

Eigenvectors.h

  • Eigenvectors.h 674 B
    // Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to <gmsh@geuz.org>.
    
    #ifndef _EIGENVECTORS_H_
    #define _EIGENVECTORS_H_
    
    #include "Plugin.h"
    
    extern "C"
    {
      GMSH_Plugin *GMSH_RegisterEigenvectorsPlugin();
    }
    
    class GMSH_EigenvectorsPlugin : public GMSH_Post_Plugin
    {
     public:
      GMSH_EigenvectorsPlugin(){}
      void getName(char *name) const;
      void getInfos(char *author, char *copyright, char *helpText) const;
      void catchErrorMessage(char *errorMessage) const;
      int getNbOptions() const;
      StringXNumber *getOption(int iopt);  
      PView *execute(PView *);
    };
    
    #endif