<!--
{
  "availability" : [
    "iOS: 7.0.0 -",
    "iPadOS: 7.0.0 -",
    "macCatalyst: -",
    "macOS: 10.9.0 -",
    "tvOS: 9.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 2.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "CoreGraphics",
  "identifier" : "/documentation/CoreGraphics/CGContext/addArc(center:radius:startAngle:endAngle:clockwise:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Core Graphics",
      "CoreGraphics"
    ],
    "preciseIdentifier" : "s:So12CGContextRefa12CoreGraphicsE6addArc6center6radius10startAngle03endJ09clockwiseySo7CGPointV_0C10Foundation7CGFloatVA2NSbtF"
  },
  "title" : "addArc(center:radius:startAngle:endAngle:clockwise:)"
}
-->

# addArc(center:radius:startAngle:endAngle:clockwise:)

Adds an arc of a circle to the current path, specified with a radius and angles.

```
func addArc(center: CGPoint, radius: CGFloat, startAngle: CGFloat, endAngle: CGFloat, clockwise: Bool)
```

## Parameters

`center`

The center of the arc, in user space coordinates.

`radius`

The radius of the arc, in user space coordinates.

`startAngle`

The angle to the starting point of the arc, measured in radians from the positive x-axis.

`endAngle`

The angle to the end point of the arc, measured in radians from the positive x-axis.

`clockwise`

<doc://com.apple.documentation/documentation/Swift/true> to make a clockwise arc; <doc://com.apple.documentation/documentation/Swift/false> to make a counterclockwise arc.

## Discussion

This method calculates starting and ending points using the radius and angles you specify, uses a sequence of cubic Bézier curves to approximate a segment of a circle between those points, and then appends those curves to the current path.

The `clockwise` parameter determines the direction in which the arc is created; the actual direction of the final path is dependent on the current transformation matrix of the graphics context. In a flipped coordinate system (the default for <doc://com.apple.documentation/documentation/UIKit/UIView> drawing methods in iOS), specifying a clockwise arc results in a counterclockwise arc after the transformation is applied.

If the current path already contains a subpath, this method adds a line connecting the current point to the starting point of the arc. If the current path is empty, his method creates a new subpath whose starting point is the starting point of the arc. The ending point of the arc becomes the new current point of the path.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)