gmsh-TingyuanDoc  0.1
An Open-Source Timing-driven Analytical Mixed-size FPGA Placer
Smooth.h
Go to the documentation of this file.
1 // Gmsh - Copyright (C) 1997-2022 C. Geuzaine, J.-F. Remacle
2 //
3 // See the LICENSE.txt file in the Gmsh root directory for license information.
4 // Please report all issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
5 
6 #ifndef SMOOTH_H
7 #define SMOOTH_H
8 
9 #include "Plugin.h"
10 
11 extern "C" {
13 }
14 
16 public:
18  std::string getName() const { return "Smooth"; }
19  std::string getShortHelp() const { return "Apply nodal smoothing"; }
20  std::string getHelp() const;
21  int getNbOptions() const;
22  StringXNumber *getOption(int iopt);
23  PView *execute(PView *);
24 };
25 
26 #endif
PView
Definition: PView.h:27
Plugin.h
GMSH_Plugin
Definition: Plugin.h:26
StringXNumber
Definition: Options.h:918
GMSH_SmoothPlugin::getName
std::string getName() const
Definition: Smooth.h:18
GMSH_SmoothPlugin::getHelp
std::string getHelp() const
Definition: Smooth.cpp:14
GMSH_SmoothPlugin::GMSH_SmoothPlugin
GMSH_SmoothPlugin()
Definition: Smooth.h:17
GMSH_SmoothPlugin::getOption
StringXNumber * getOption(int iopt)
Definition: Smooth.cpp:27
GMSH_SmoothPlugin::getNbOptions
int getNbOptions() const
Definition: Smooth.cpp:22
GMSH_SmoothPlugin
Definition: Smooth.h:15
GMSH_SmoothPlugin::execute
PView * execute(PView *)
Definition: Smooth.cpp:32
GMSH_PostPlugin
Definition: Plugin.h:83
GMSH_SmoothPlugin::getShortHelp
std::string getShortHelp() const
Definition: Smooth.h:19
GMSH_RegisterSmoothPlugin
GMSH_Plugin * GMSH_RegisterSmoothPlugin()
Definition: Smooth.cpp:11