Phoxonics  1.0
Object Oriented FDTD Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
GnuplotFdtd1D.hpp
Go to the documentation of this file.
1 /*
2  * GnuplotFdtd1D.hpp
3  *
4  * Created on: Jul 6, 2014
5  * Author: nano
6  */
7 
8 #ifndef GNUPLOTFDTD1D_HPP_
9 #define GNUPLOTFDTD1D_HPP_
10 
11 #include "../gnuplot/gnuplot-iostream.h"
12 #include <vector>
13 
14 namespace phoxonics {
15 namespace visual {
16 
18 public:
19  GnuplotFdtd1D();
20  virtual ~GnuplotFdtd1D();
21 
22  void render(Gnuplot& gp, std::vector<std::pair<double, double>>& xy_ez,
23  std::vector<std::pair<double, double>>& xy_hy, double mouse_x, double mouse_y);
24 };
25 
26 } /* namespace visual */
27 } /* namespace phoxonics */
28 
29 #endif /* GNUPLOTFDTD1D_HPP_ */
virtual ~GnuplotFdtd1D()
Definition: GnuplotFdtd1D.cpp:18
Definition: CommonBase.hpp:14
GnuplotFdtd1D()
Definition: GnuplotFdtd1D.cpp:13
Definition: GnuplotFdtd1D.hpp:17
void render(Gnuplot &gp, std::vector< std::pair< double, double >> &xy_ez, std::vector< std::pair< double, double >> &xy_hy, double mouse_x, double mouse_y)
Definition: GnuplotFdtd1D.cpp:22