Robotran C Documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
set_plot.h
Go to the documentation of this file.
1 
8 #ifndef _SET_PLOT_H_
9 #define _SET_PLOT_H_
10 
11 #include "user_realtime.h"
12 //#include "mbs_realtime_struct.h"
13 /*#include "plot_sdl.h"*/
14 
15 
16  AutoPlot* init_set_plot(int max_nb_curves);
17  void reset_flag_plot();
18  void free_set_plot();
19 
20 #endif
flag_plot
int flag_plot
1 if init_set_plot was called, 0 otherwise
Definition: set_plot.c:7
init_set_plot
AutoPlot * init_set_plot(int max_nb_curves)
initialize the static auto_plot structure
Definition: set_plot.c:23
auto_plot.h
functions used to automatically update the user curves plotted
AutoPlot
User curves to plot auto-update.
Definition: mbs_realtime_struct.h:58
auto_plot
static AutoPlot * auto_plot
Definition: set_plot.c:5
set_plot.h
set_plot function called by the user to plot a curve
reset_flag_plot
void reset_flag_plot()
reset the flag_plot to 0. Useful when running several simulation in a row with different save2file se...
Definition: set_plot.c:13
set_plot
void set_plot(double value, char *label)
function called by the user to plot a curve
Definition: set_plot.c:47
reset_flag_plot
void reset_flag_plot()
reset the flag_plot to 0. Useful when running several simulation in a row with different save2file se...
Definition: set_plot.c:13
free_auto_plot
void free_auto_plot(AutoPlot *auto_plot)
release memory for AutoPlot
Definition: auto_plot.c:43
update_auto_plot
void update_auto_plot(AutoPlot *auto_plot, double value, const char *label)
update auto_plot when a 'set_plot' is encountered
Definition: auto_plot.c:56
init_set_plot
AutoPlot * init_set_plot(int max_nb_curves)
initialize the static auto_plot structure
Definition: set_plot.c:23
free_set_plot
void free_set_plot()
release memory of auto_plot
Definition: set_plot.c:34
free_set_plot
void free_set_plot()
release memory of auto_plot
Definition: set_plot.c:34
user_realtime.h
init_auto_plot
AutoPlot * init_auto_plot(int max_nb)
initialize the AutoPlot structure
Definition: auto_plot.c:13