Skip to content
Snippets Groups Projects
Forked from gmsh / gmsh
13446 commits behind the upstream repository.
SphericalRaise.h 708 B
// Gmsh - Copyright (C) 1997-2011 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// bugs and problems to <gmsh@geuz.org>.

#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