[BACK]Return to ifplot.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / plot

Diff for /OpenXM_contrib2/asir2000/plot/ifplot.h between version 1.8 and 1.12

version 1.8, 2001/10/09 01:36:27 version 1.12, 2004/03/26 08:25:37
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/asir2000/plot/ifplot.h,v 1.7 2000/12/05 01:24:59 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/plot/ifplot.h,v 1.11 2002/08/02 08:59:47 noro Exp $
 */  */
 #if defined(VISUAL)  #if defined(VISUAL)
 /* for Visual C++ */  /* for Visual C++ */
Line 88 
Line 88 
   
 #define MAXCANVAS 64  #define MAXCANVAS 64
 #define MAXGC 16  #define MAXGC 16
   #define DEFAULTPOLARSTEP 400
 #define DEFAULTWIDTH 400  #define DEFAULTWIDTH 400
 #define DEFAULTHEIGHT 400  #define DEFAULTHEIGHT 400
   
Line 95 
Line 96 
 #define MODE_CONPLOT 1  #define MODE_CONPLOT 1
 #define MODE_PLOT 2  #define MODE_PLOT 2
 #define MODE_INTERACTIVE 3  #define MODE_INTERACTIVE 3
   #define MODE_POLARPLOT 4
   
 #define DIR_X 0  #define DIR_X 0
 #define DIR_Y 1  #define DIR_Y 1
Line 149  typedef struct RealVect {
Line 151  typedef struct RealVect {
 #define MKRVECT4(v,x,y,z,u)\  #define MKRVECT4(v,x,y,z,u)\
 ((v)=(RealVect *)MALLOC_ATOMIC(sizeof(RealVect)+3*sizeof(int)),\  ((v)=(RealVect *)MALLOC_ATOMIC(sizeof(RealVect)+3*sizeof(int)),\
  (v)->len=4,(v)->body[0]=(x),(v)->body[1]=(y),(v)->body[2]=(z),(v)->body[3]=(u))   (v)->len=4,(v)->body[0]=(x),(v)->body[1]=(y),(v)->body[2]=(z),(v)->body[3]=(u))
   #define MKRVECT5(v,x,y,z,u,w)\
   ((v)=(RealVect *)MALLOC_ATOMIC(sizeof(RealVect)+4*sizeof(int)),\
    (v)->len=4,(v)->body[0]=(x),(v)->body[1]=(y),(v)->body[2]=(z),(v)->body[3]=(u),(v)->body[4]=(w))
   
 #define RV_POINT 1  #define RV_POINT 1
 #define RV_LINE 2  #define RV_LINE 2
Line 189  struct canvas {
Line 194  struct canvas {
 };  };
   
 extern struct canvas *canvas[];  extern struct canvas *canvas[];
   extern struct canvas *closed_canvas[];
 extern struct canvas *current_can;  extern struct canvas *current_can;
   
 extern VL CO;  extern VL CO;
Line 205  extern Window rootwin;
Line 211  extern Window rootwin;
 extern GC drawGC,dashGC,hlGC,scaleGC,clearGC,xorGC,colorGC,cdrawGC;  extern GC drawGC,dashGC,hlGC,scaleGC,clearGC,xorGC,colorGC,cdrawGC;
 extern XFontStruct *sffs;  extern XFontStruct *sffs;
 #endif  #endif
   
   struct xcolorForPS {
     unsigned long pixel;
     double r,g,b;
     int print;
   };
   
 /* prototypes */  /* prototypes */
 void calc(double **tab,struct canvas *can,int nox);  void calc(double **tab,struct canvas *can,int nox);

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

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