-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot.h
46 lines (31 loc) · 1.22 KB
/
plot.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// #############################################################################
#include <stdlib.h>
#include <gtk/gtk.h>
#include <glib/gprintf.h>
#include <math.h>
#include <gsl/gsl_math.h>
#include <gsl/gsl_errno.h>
#include <gsl/gsl_matrix.h>
#include <gsl/gsl_odeiv2.h>
#include <plplot.h>
// #############################################################################
#ifndef PLOT_H_INCLUDED
#define PLOT_H_INCLUDED
// #############################################################################
enum DISPLAY_CHARACTERISTIC
{
DISPLAY_NONE = 0,
DISPLAY_CURRENT,
DISPLAY_SPEED,
DISPLAY_OUTPUT_COEFF,
DISPLAY_COUNT
};
// #############################################################################
extern PLFLT time_xmax;
// #############################################################################
gboolean plot_init( struct CallbackObjekt *obj );
gboolean plot_deinit( struct CallbackObjekt *obj );
G_MODULE_EXPORT gboolean drawingarea1_draw_cb( GtkWidget *zeichenflaeche, cairo_t *cr, struct CallbackObjekt *obj );
// #############################################################################
#endif // PLOT_H_INCLUDED
// #############################################################################