fakewindow.c

来自「[Game.Programming].Academic - Graphics G」· C语言 代码 · 共 21 行

C
21
字号
/* This is a fake version, used to test on other machines. */extern void MakeWindow(void);void MakeWindow(){}extern void MoveTo( short, short );extern void LineTo( short, short );void LineTo( short x, short y ){	printf("L %3d, %3d\n", (int) x, (int) y );}void MoveTo( short x, short y ){	printf("M %3d, %3d\n", (int) x, (int) y );}

⌨️ 快捷键说明

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