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

📄 spr2.c

📁 在以前公司DOS环境下
💻 C
字号:
/*spriteget.c*/
#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
#include<math.h>
#include<conio.h>
#include"svgacc.h"

void main()
{
 int a,b,c,d;
 RasterBlock *blkdata;
 whichvga();
 res800();
 drwcircle(1,10,30,30,20);
 fillarea(30,30,10,7);
 a=b=0;
 c=d=30;
 blkdata=(RasterBlock *)malloc((c-a+1)*(d-b+1)+4);
 blkget(a,b,c,d,blkdata);
 blkput(1,320,240,blkdata);
 getch();
 restext();
};



⌨️ 快捷键说明

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