⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 20040317-2.c

📁 linux下编程用 编译软件
💻 C
字号:
typedef struct _ScaleRec *ScaleWidget;typedef struct{  short *x;  unsigned short *width;} Table;typedef struct{  Table table;} ScalePart;typedef struct _ScaleRec{  ScalePart scale;} ScaleRec;static intFindPixel (ScaleWidget sw, short x, short y,       short * img_x, short * img_y, unsigned long * img_pixel){  if (sw->scale.table.x[(int) *img_x] +       (short) sw->scale.table.width[(int) *img_x] < x)    {      ++*img_x;      return FindPixel (sw, x, y, img_x, img_y, img_pixel);    }}

⌨️ 快捷键说明

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