📄 uwplot.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -