ellipse static method

OpSet ellipse(
  1. double x,
  2. double y,
  3. double width,
  4. double height,
  5. DrawConfig config,
)

Implementation

static OpSet ellipse(
    double x, double y, double width, double height, DrawConfig config) {
  final EllipseParams params = generateEllipseParams(width, height, config);
  return ellipseSet(x, y, config, params);
}