home *** CD-ROM | disk | FTP | other *** search
- main(){
-
- int style,x,i;
- char str[12];
-
- setvga();
- initgraf(18,0,0);
- fontinit();
- font_load(0,"vga8x16");
- fontcspt(0,"COLOR HATCH STYLES",320,20,0,15,0);
-
- color_hatch();
- for (x = 0,style = 0; x < 560; x += 70, style++){
- eg_rectangle(x,30,x+69,230,1,1,style);
- egitoa(str,style);
- fontcspt(0,str,x+35,245,0,15,0);
- }
-
- for (x = 0; x < 560; x += 70, style++){
- eg_rectangle(x,265,x+69,460,1,1,style);
- egitoa(str,style);
- fontcspt(0,str,x+35,475,0,15,0);
- }
-
- getch();
- initgraf(3,0,0);
- }
-