home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / SEGRAPH.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-11  |  4.3 KB  |  106 lines

  1. #define maxContours 60
  2. typedef char string80[80];
  3. typedef char string20[80];
  4.  
  5. typedef struct grstype
  6. {
  7.    struct WorldRect plotworld;
  8.    struct WorldRect plotclip;
  9.    struct WorldRect win2plotratio;
  10.    struct viewporttype plotrect;
  11.    struct viewporttype drawingrect;
  12.    char LogX;
  13.    char LogY;
  14.    int numticx;
  15.    int numticy;
  16.    float xint;
  17.    float yint;
  18.    float tsx;
  19.    float tsy;
  20.    float ticspacex;
  21.    float ticspacey;
  22. } grstype;
  23.  
  24. void SetWin2PlotRatio( int win, float l, float t, float r, float b);
  25. void SetRect(struct viewporttype *r,int xx1,int yy1,int xx2,int yy2);
  26. void SetGraphAreaWorld(float a,float b,float c,float d);
  27. void SetGraphWindow();
  28. void SetCurrentWindow(int win);
  29. float PowerCalc(float realnum,float power);
  30. float log10x(float realnum);
  31. float logx(float realnum);
  32. int NumExp(float realnum);
  33. void FindMinMax(float  *dataset,int numdat,float *minval,float *maxval);
  34. void SortData(float  *x,float  *y,int n,int d);
  35. void SortDataX(float *x,float *y,int n,int d);
  36. void SortDataY(float *x,float *y,int n,int d);
  37. void SetAxesType(int PlotTypeX,int PlotTypeY);
  38. void DefGraphWindow(int xx1,int yy1,int xx2,int yy2,int win);
  39. void SetPercentWindow( float x1,float y1,float x2,float y2, int win );
  40. void BorderCurrentWindow( int c );
  41. void SetViewBackground( int c );
  42. void SetPlotBackground( int c );
  43. void ScaleLogX(float xx1,float xx2);
  44. void ScaleLogY(float yy1,float yy2);
  45. void ScaleLinX(float xx1,float xx2);
  46. void ScaleLinY(float yy1,float yy2);
  47. void ScalePlotArea(float xx1,float yy1,float xx2,float yy2);
  48. void ClearWindow();
  49. void ClearGraph();
  50. void SetXYIntercepts(float xx1,float yy1);
  51. void DrawXAxis(float TicSpace,int dir);
  52. void DrawYAxis(float TicSpace,int dir);
  53. void ConvertNum(float innum,float a1,float a2,float TicSpace,
  54.                 char LogFlag, char *outstr);
  55. void LabelXAxWithStrings(int NthTic,string80 *TicStrings,
  56.                          int NumStrings,int dir);
  57. void LabelXAxis(int NthTic,int dir);
  58. void LabelYAxis(int NthTic,int dir);
  59. void DrXLinGrid(int NthTic);
  60. void DrYLinGrid(int NthTic);
  61. void DrYLogGrid(int NthTic);
  62. void DrXLogGrid(int NthTic);
  63. void DrawGridX(int NthTic);
  64. void DrawGridY(int NthTic);
  65. void DrawGrid(int NthTic);
  66. void RoundAxes(float *a1,float *a2,float *tics);
  67. void AutoAxes(float *datasetx,float *datasety,int numdat,int AxFlag);
  68. void PrePlot(float *datasetx,float *datasety,int numdat);
  69. void CopyVectors(float *x, int n, float *x1);
  70. void PostPlot();
  71. void LinePlotData(float *datasetx,float *datasety,int numdat,
  72.                   int color,int linestyle);
  73. void BargraphData(float *datasetx, float *datasety,
  74.                   int numdat,float  width,int color,int HatchStyle);
  75. void PlotErrorBars(float *datasetx, float *datasety1,
  76.                    float *datasety2,int numdat,int color, float width);
  77. void ScatterPlotData(float *datasetx,float *datasety,int numdat,int color, int marktype);
  78. void GroupPlotData(float *datasetx,float *GroupData,int numdat,int numgroup,
  79.                   int GraphType,float width,int *gc,int *gh);
  80. void PieChart( float *xdata, int numgroup, int *gcolors, int *ghatch,
  81.                string80  *titles, int pietype, int val, int per,
  82.                int *explodetrue, float *explodepercent );
  83. void  FindCMMinMax( float *cm, int rows,int columns,
  84.                     float  *minZval,  float *maxZval);
  85. void StringLegends(string80 *sv, int *GColors, int *GHatch, int n, int barLine);
  86. void RealLegends(float  *rv, int *GColors, int *GHatch, int  n, int barLine);
  87. void ContourPlotLegends(float *cm,int rows,int  columns,
  88.                       float contourInc,int *GColors, int *GHatch);
  89. int CheckForContour(float *cm, int numcolumn,
  90.                     int j1,int i1,int j2,int i2,
  91.                     float minX,float xSpace,
  92.                     float minY,float ySpace,
  93.                     float contourZ,
  94.                     float *x, float *y);
  95. void  ContourPlot( float *cm,
  96.                   int rows, int columns,
  97.                   float contourInc,
  98.                   int *GColors, int *GHatch);
  99. void LabelPlotArea(float x,float y,char *GrLabel,int xjust,int yjust);
  100. void LabelGraphWindow(float x,float y,char *GrLabel,int xjust,int yjust);
  101. void TitleXAxis(char *XTitle);
  102. void TitleYAxis(char *YTitle);
  103. void TitleWindow(char *GTitle);
  104. void InitSEGraphics(int cmode);
  105. void CloseSEGraphics();
  106.