home *** CD-ROM | disk | FTP | other *** search
- /* hatch style for monochrome - from 0 to 15 */
- mono_hatch() {
- htinit();
- htdefind(0,0,2); /* 2 pixels of background */
- htdefind(1,1,2); /* 2 pixels of color 1 */
- htdefind(2,0,4); /* 4 pixels of background */
- htdefind(3,1,4); /* 4 pixels of color 1 */
- htdefstl(0,2,1,0);
- htdefstl(1,2,1,1);
- htdefstl(2,0,2,0,1);
- htdefstl(3,1,2,1,0);
- htdefstl(4,2,2,1,0);
- htdefstl(5,3,2,1,0);
- htdefstl(6,0,2,2,3);
- htdefstl(7,1,2,2,3);
- htdefstl(8,2,2,3,2);
- htdefstl(9,3,2,3,2);
- htdefstl(10,2,1,0);
- htdefstl(11,2,1,1);
- htdefstl(12,0,2,0,1);
- htdefstl(13,1,2,1,0);
- htdefstl(14,2,2,1,0);
- htdefstl(15,3,2,1,0);
- }
-