home *** CD-ROM | disk | FTP | other *** search
- main(){
-
- int style,x,i;
- char str[12];
-
- setibm();
- initgraf(4,0,0);
- fontinit();
- font_load(0,"ibmrom");
- fontcspt(0,"CGA HATCH STYLES",160,10,0,1,0);
-
- cga_hatch();
- for (x = 0,style = 0; x < 280; x += 35, style++){
- eg_rectangle(x,15,x+34,90,1,1,style);
- egitoa(str,style);
- fontcspt(0,str,x+17,100,0,1,0);
- }
-
- for (x = 0; x < 280; x += 35, style++){
- eg_rectangle(x,110,x+34,175,1,1,style);
- egitoa(str,style);
- fontcspt(0,str,x+17,185,0,1,0);
- }
-
- getch();
- initgraf(3,0,0);
- }
-