circle method

dynamic circle([
  1. dynamic x,
  2. dynamic y,
  3. dynamic r,
  4. dynamic style,
])

Adds an circle to PDF.

@param {number} x Coordinate (in units declared at inception of PDF document) against left edge of the page. @param {number} y Coordinate (in units declared at inception of PDF document) against upper edge of the page. @param {number} r Radius (in units declared at inception of PDF document). @param {string} style A string specifying the painting style or null. Valid styles include: 'S' default - stroke, 'F' - fill, and 'DF' (or 'FD') - fill then stroke. A null value postpones setting the style so that a shape may be composed using multiple method calls. The last drawing method call used to define the shape should not have a null style argument. @function @instance @returns {jsPDF} @memberof jsPDF# @name circle

Implementation

external circle([x, y, r, style]);