Forked from
gmsh / gmsh
15873 commits behind the upstream repository.
-
Christophe Geuzaine authored
- fix bb computation to avoid model jumping around when adding points in z=0 plane - pass interpol matrices as ref
Christophe Geuzaine authored- fix bb computation to avoid model jumping around when adding points in z=0 plane - pass interpol matrices as ref
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