home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / tserlib / tser_copy_proc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-29  |  264 b   |  17 lines

  1. /*
  2. ### procedure for copying an orbit data into a time series ###
  3. */
  4.  
  5. void tser_copy_proc()
  6. {
  7.     extern int tser_data_option;
  8.  
  9.     if(tser_data_option==1){
  10.         system_mess_proc(1,"This choice is not accepted!");
  11.         return;
  12.     }
  13.     all_reset();
  14.     tser_copy();
  15.     all_refresh();
  16. }
  17.