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

Diff for /OpenXM_contrib2/asir2000/plot/smoothing.c between version 1.9 and 1.10

version 1.9, 2007/01/25 16:19:41 version 1.10, 2013/11/05 02:55:03
Line 1 
Line 1 
 /* $OpenXM: OpenXM_contrib2/asir2000/plot/smoothing.c,v 1.8 2002/07/20 02:28:08 noro Exp $ */  /* $OpenXM: OpenXM_contrib2/asir2000/plot/smoothing.c,v 1.9 2007/01/25 16:19:41 saito Exp $ */
 #include <stdio.h>  #include <stdio.h>
 #include <time.h>  #include <time.h>
 #include <math.h>  #include <math.h>
Line 17  static FILE *Fp = NULL;
Line 17  static FILE *Fp = NULL;
 static void PSProlog(int, int, int, int);  static void PSProlog(int, int, int, int);
 static void PSDashedLine(int, int, int, int);  static void PSDashedLine(int, int, int, int);
 static void polyLine_outputPS_dashed_line(int x0,int y0,int x1,int y1);  static void polyLine_outputPS_dashed_line(int x0,int y0,int x1,int y1);
   void PSFromImage(FILE *fp,XImage *image,struct canvas *can);
   
 static int Strategy_generate_PS = 0;  static int Strategy_generate_PS = 0;
   
 PSFromImage(FILE *fp,XImage *image,struct canvas *can) {  void PSFromImage(FILE *fp,XImage *image,struct canvas *can) {
   int x, y, ir, ig, ib;    int x, y, ir, ig, ib;
   float r, g, b;    float r, g, b;
   int srcc, trg,grux, gruy, ix, iy;    int srcc, trg,grux, gruy, ix, iy;

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

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