| 1461 | // true, then the line ends are rounded, otherwise they are squared. |
| 1462 | |
| 1463 | void PsLineCap(flag fLineCap) |
| 1464 | { |
| 1465 | if (fLineCap != gi.fLineCap) { |
| 1466 | PsStrokeForce(); |
| 1467 | fprintf(gi.file, "%d setlinecap\n", fLineCap); |
| 1468 | gi.fLineCap = fLineCap; |
| 1469 | } |
| 1470 | } |
| 1471 | |
| 1472 | |
| 1473 | // Set the dash length to be used by PostScript line commands. |
no test coverage detected