uwplot.h

来自「wavlet compression on c++ only cods」· C头文件 代码 · 共 35 行

H
35
字号
// Copyright (c) 1999 Stephen T. Welstead. All rights reserved.
//  UWPLOT.H  Header file for plot files  

#ifndef UWPLOT_H
#define UWPLOT_H

#ifdef __cplusplus
extern "C" {       /* Assume C declarations for C++ */
#endif  /* __cplusplus */

#include "uwgr.h"

#define UWPLOT_PATH_LEN 255

typedef char path_str[UWPLOT_PATH_LEN + 1];

typedef struct plot_tag {
     float *xdata,*ydata;
     int npts;
     COLORREF color;
     path_str xdata_filename,ydata_filename;
     int xdata_to_file,ydata_to_file;
     int show_descr1,show_descr2;
     struct plot_tag *next;
     } plot_xy_data_struct;

void plot_xy (graph_window_struct *gr,graph_setup_rec *gr_setup,
       plot_xy_data_struct *plot_data,
       char descr1[],char descr2[]) ;

#ifdef __cplusplus
}
#endif  /* __cplusplus */

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?