hey guys i've been trying to create a path but it always end up showing an error ''cannot convert value of type NSNull to expected argument UnsafePointer< CGAffineTransform > '' i dont know how to get the UnsafePointer< CGAffineTransform > to be nil
here is the code
class func path(radius: Double) -> CGMutablePath {
var path: CGMutablePath = CGMutablePath()
CGPathAddArc(path, NSNull , 0.0, 0.0, radius, 0.0, 2.0 * M_PI, true)
return path
}