/*****************************************************************/ /* */ /* Copyright (c) Quinn-Curtis, 1991, 1992 */ /* */ /* Filename: RTCHART.H */ /* Revision: 3.0 */ /* Date: 2/3/92 */ /* */ /* Description: -Routines for Standard Charting including: */ /* auto scaling */ /* line plotting */ /* bar charts */ /* scatterplots */ /* window titling */ /* */ /* These routines are not for fast real-time display */ /*****************************************************************/ #ifdef __cplusplus extern "C" { #endif #ifndef realtype #include "rtstdhdr.h" #include "rtgsubs.h" #endif void rtroundaxes(realtype *a1, realtype *a2, realtype *tics); void rtautoaxes(rtstattype *win, realtype *datasetx, realtype *datasety, int numdat, int axflag ); void rtlineplotdata(rtstattype *win, realtype *datasetx, realtype *datasety, int numdat, int color, int linestyle ); void rtbargraphdata(rtstattype *win, realtype *datasetx, realtype *datasety, int numdat,realtype width, int color, int hatchstyle); void rtsetscatmarkrelsize(realtype marksize); void rtscatterplotdata(rtstattype *win, realtype *datasetx, realtype *datasety, int numdat, int color, int marktype); void rtlabelplotarea(rtstattype *win, realtype x, realtype y, char *grlabel, int xjust, int yjust ); void rtlabelgraphwindow(rtstattype *win, realtype x, realtype y, char *grlabel, int xjust, int yjust); void rttitlexaxis(rtstattype *win, char *xtitle ); void rttitleyaxis(rtstattype *win, char *ytitle); void rttitlewindow(rtstattype *win, char *gtitle ); #ifdef __cplusplus } #endif