| 6046 | } |
| 6047 | |
| 6048 | int PSL_definteger (struct PSL_CTRL *PSL, const char *param, int value) { |
| 6049 | PSL_command (PSL, "/%s %d def\n", param, value); |
| 6050 | return (PSL_NO_ERROR); |
| 6051 | } |
| 6052 | |
| 6053 | int PSL_defpen (struct PSL_CTRL *PSL, const char *param, double linewidth, char *style, double offset, double rgb[]) { |
| 6054 | /* Function to set line pen attributes. We force any transparency change since this is all inside a gsave/hrestore */ |
no test coverage detected