| 5002 | } |
| 5003 | |
| 5004 | char * PSL_makepen (struct PSL_CTRL *PSL, double linewidth, double rgb[], char *pattern, double offset) { |
| 5005 | /* Creates a text string with the corresponding PS command to set the pen */ |
| 5006 | static char buffer[PSL_BUFSIZ]; |
| 5007 | sprintf (buffer, "%d W %s %s", psl_ip (PSL, linewidth), psl_putcolor (PSL, rgb, 0), psl_putdash (PSL, pattern, offset)); |
| 5008 | return (buffer); |
| 5009 | } |
| 5010 | |
| 5011 | char * PSL_makefont (struct PSL_CTRL *PSL, double size, double rgb[]) { |
| 5012 | /* Creates a text string with the corresponding PS command to set the font (current font) */ |
no test coverage detected