1234567891011121314151617181920212223242526272829303132 |
- /*
- 2D FDTD simulator
- Copyright (C) 2019 Emilia Blåsten
- This program is free software: you can redistribute it and/or
- modify it under the terms of the GNU Affero General Public License
- as published by the Free Software Foundation, either version 3 of
- the License, or (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Affero General Public License for more details.
- You should have received a copy of the GNU Affero General Public
- License along with this program. If not, see
- <http://www.gnu.org/licenses/>.
- */
- /* plot2d.h: The header file accompanying the file with all the plotting
- * function definitions. This one has just a few prototypes. */
- #ifndef _PLOT2D_H
- #define _PLOT2D_H
- #include "plotWindow.h"
- void plot2d(double **array, int sizeX, int sizeY, plotWindow *plotter);
- void plot2dLinComb(double a1, double **array1,
- double a2, double **array2,
- int sizeX, int sizeY, plotWindow *plotter);
- #endif
|