Select Git revision
Callbacks.cpp
Forked from
gmsh / gmsh
Source project has a limited visibility.
-
Christophe Geuzaine authored
proof of concept for unproject (e.g. to add points with the mouse)
Christophe Geuzaine authoredproof of concept for unproject (e.g. to add points with the mouse)
Summation.h 835 B
// 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.
#ifndef _SUMMATION_H_
#define _SUMMATION_H_
#include "Plugin.h"
extern "C" {
GMSH_Plugin *GMSH_RegisterSummationPlugin();
}
class GMSH_SummationPlugin : public GMSH_PostPlugin {
public:
GMSH_SummationPlugin() {}
std::string getName() const { return "Summation"; }
std::string getShortHelp() const
{
return "Create a view by summing different views (TimeStep per TimeStep "
"and Component by Component)";
}
std::string getHelp() const;
int getNbOptions() const;
StringXNumber *getOption(int iopt);
int getNbOptionsStr() const;
StringXString *getOptionStr(int iopt);
PView *execute(PView *);
};
#endif