[BACK]Return to plot.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / windows / engine2000

Diff for /OpenXM_contrib2/windows/engine2000/plot.c between version 1.8 and 1.11

version 1.8, 2014/03/25 19:30:18 version 1.11, 2014/08/20 16:51:34
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/windows/engine2000/plot.c,v 1.7 2006/02/08 05:31:37 noro Exp $   * $OpenXM: OpenXM_contrib2/windows/engine2000/plot.c,v 1.10 2014/05/13 20:07:23 ohara Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 235  static void process_ox(int id, Obj obj, unsigned int s
Line 235  static void process_ox(int id, Obj obj, unsigned int s
   
 static void process_resize(struct canvas *can,POINT startp,POINT endp)  static void process_resize(struct canvas *can,POINT startp,POINT endp)
 {  {
         if ( can->mode == MODE_INTERACTIVE || can->mode == MODE_POLARPLOT )          if ( can->mode == modeNO(INTERACTIVE) || can->mode == modeNO(POLARPLOT) )
                 return;                  return;
   
         if ( can->mode == MODE_PLOT )  #if 0
           if ( can->mode == modeNO(PLOT) )
                 plot_resize(can,startp,endp);                  plot_resize(can,startp,endp);
         else          else
                 ifplot_resize(can,startp,endp);                  ifplot_resize(can,startp,endp);
   #else
           plot_resize(can,startp,endp);
   #endif
 }  }
   
 static void asir_do_cmd(unsigned int cmd,unsigned int serial)  static void asir_do_cmd(unsigned int cmd,unsigned int serial)
Line 321  static void asir_executeFunction(int serial)
Line 325  static void asir_executeFunction(int serial)
                 NEXT(n1) = 0;                  NEXT(n1) = 0;
         id = -1;          id = -1;
         if ( !strcmp(func,"plot") ) {          if ( !strcmp(func,"plot") ) {
                 id = plot(n,MODE_PLOT);                  id = plot(n,modeNO(PLOT));
                   STOQ(id,ret); asir_push_one((Obj)ret);
           }else if ( !strcmp(func,"ifplot") ) {
                   id = plot(n,modeNO(IFPLOT));
                 STOQ(id,ret); asir_push_one((Obj)ret);                  STOQ(id,ret); asir_push_one((Obj)ret);
         } else if ( !strcmp(func,"arrayplot") ) {          } else if ( !strcmp(func,"arrayplot") ) {
                 id = arrayplot(n);                  id = arrayplot(n);

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.11

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>