plotCircleWidth function

void plotCircleWidth(
  1. double xm,
  2. double ym,
  3. double r,
  4. double th,
  5. SetPixel setPixel,
)

Implementation

void plotCircleWidth(double xm, double ym, double r, double th, SetPixel setPixel) {
  plotEllipseRectWidth(xm - r, ym - r, xm + r, ym + r, th, setPixel);
}