closePath method

void closePath()

Close the path with a line

Implementation

void closePath() {
  assert(() {
    if (_page.pdfDocument.verbose) {
      _buf.putComment('closePath');
    }
    return true;
  }());

  _buf.putString('h\n');
}