📄 draw.c
字号:
/* draw.c 4.1 83/03/09 *//* * draw a line from the current place to (x,y). Such lines are * supposed to be horizontal, and are affected by the current mode. */#include "2648.h"draw(x, y){#ifdef TRACE if (trace) { fprintf(trace, "draw(%d,%d)\n", x, y); }#endif sync(); escseq(ESCP); motion(x, y); _supx = x; _supy = y;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -