Beispiel #1
0
void plot_real_addToWindowGrid(plot_real_t *h, char *window, int row, int column){
  Realplot *plot = static_cast<Realplot*>(*h);
  plot->addToWindow(window, row, column);
}
Beispiel #2
0
void plot_real_addToWindow(plot_real_t *h, char *window){
  Realplot *plot = static_cast<Realplot*>(*h);
  plot->addToWindow(window);
}