📄 pick.h
字号:
/*pick object definitionA pick object contains pick flags and the picks.*/#ifdef __convex__#define NPICK 300#define PICKNLIST 2000#endif#ifndef __convex__#define NPICK 200#define PICKNLIST 500#endif/* Pick object */typedef struct { int iaxis[DATA_NAXIS]; /* orientation */ int index[DATA_NAXIS]; /* sample indices */ } *PickPoint, PickPoint_;/* line of picks */typedef struct { int iaxis[DATA_NAXIS]; /* orientation */ int npick; /* number of picks */ int index[NPICK][DATA_NAXIS]; /* data coordinates */ } *PickLine;/* typed returns */extern PickLine PickFind (/*dir,frame*/);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -