Select Git revision
empty_list_append.geo
Forked from
gmsh / gmsh
Source project has a limited visibility.
SphericalRaise.h 735 B
// Gmsh - Copyright (C) 1997-2016 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@onelab.info>.
#ifndef _SPHERICAL_RAISE_H_
#define _SPHERICAL_RAISE_H_
#include "Plugin.h"
extern "C"
{
GMSH_Plugin *GMSH_RegisterSphericalRaisePlugin();
}
class GMSH_SphericalRaisePlugin : public GMSH_PostPlugin
{
public:
GMSH_SphericalRaisePlugin(){}
std::string getName() const { return "SphericalRaise"; }
std::string getShortHelp() const
{
return "Create spherical elevation plot";
}
std::string getHelp() const;
int getNbOptions() const;
StringXNumber *getOption(int iopt);
PView *execute(PView *);
};
#endif