MonobjcMonobjc Documented Class Library
AddArc Method (c, x, y, radius, startAngle, endAngle, clockwise)
NamespacesMonobjc.ApplicationServicesCGContextAddArc(IntPtr, CGFloat, CGFloat, CGFloat, CGFloat, CGFloat, Int32)

Adds an arc of a circle to the current path, possibly preceded by a straight line segment

Original signature is 'void CGContextAddArc ( CGContextRef c, CGFloat x, CGFloat y, CGFloat radius, CGFloat startAngle, CGFloat endAngle, int clockwise );'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static void AddArc(
	IntPtr c,
	CGFloat x,
	CGFloat y,
	CGFloat radius,
	CGFloat startAngle,
	CGFloat endAngle,
	int clockwise
)
Public Shared Sub AddArc ( _
	c As IntPtr, _
	x As CGFloat, _
	y As CGFloat, _
	radius As CGFloat, _
	startAngle As CGFloat, _
	endAngle As CGFloat, _
	clockwise As Integer _
)
public:
static void AddArc(
	IntPtr c, 
	CGFloat x, 
	CGFloat y, 
	CGFloat radius, 
	CGFloat startAngle, 
	CGFloat endAngle, 
	int clockwise
)
Parameters
c (IntPtr)
MISSING
x (CGFloat)
MISSING
y (CGFloat)
MISSING
radius (CGFloat)
MISSING
startAngle (CGFloat)
MISSING
endAngle (CGFloat)
MISSING
clockwise (Int32)
MISSING
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)