Calculates the bounding box of an SVG path
static PdfRect shapeBoundingBox(String d) { final proxy = _PathBBProxy(); writeSvgPathDataToPath(d, proxy); return proxy.box; }