strokePath method
Draw the contour of the previously defined shape
Implementation
void strokePath({bool close = false}) {
assert(() {
if (_page.pdfDocument.verbose) {
_buf.putComment('strokePath close:$close');
}
return true;
}());
_buf.putString('${close ? 's' : 'S'}\n');
}