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

📄 fakewindow.c

📁 [Game.Programming].Academic - Graphics Gems (6 books source code)
💻 C
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -