Return the appropriate pdf operator to cause the path to be stroked, filled, or both.
(self)
| 2435 | (len(_fillcolor) <= 3 or _fillcolor[3] != 0.0))) |
| 2436 | |
| 2437 | def paint(self): |
| 2438 | """ |
| 2439 | Return the appropriate pdf operator to cause the path to be |
| 2440 | stroked, filled, or both. |
| 2441 | """ |
| 2442 | return Op.paint_path(self.fill(), self.stroke()) |
| 2443 | |
| 2444 | capstyles = {'butt': 0, 'round': 1, 'projecting': 2} |
| 2445 | joinstyles = {'miter': 0, 'round': 1, 'bevel': 2} |
no test coverage detected