MonobjcMonobjc Documented Class Library
AddArcToPoint Method (c, x1, y1, x2, y2, radius)
NamespacesMonobjc.ApplicationServicesCGContextAddArcToPoint(IntPtr, CGFloat, CGFloat, CGFloat, CGFloat, CGFloat)

Adds an arc of a circle to the current path, using a radius and tangent points.

Original signature is 'void CGContextAddArcToPoint ( CGContextRef c, CGFloat x1, CGFloat y1, CGFloat x2, CGFloat y2, CGFloat radius );'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static void AddArcToPoint(
	IntPtr c,
	CGFloat x1,
	CGFloat y1,
	CGFloat x2,
	CGFloat y2,
	CGFloat radius
)
Public Shared Sub AddArcToPoint ( _
	c As IntPtr, _
	x1 As CGFloat, _
	y1 As CGFloat, _
	x2 As CGFloat, _
	y2 As CGFloat, _
	radius As CGFloat _
)
public:
static void AddArcToPoint(
	IntPtr c, 
	CGFloat x1, 
	CGFloat y1, 
	CGFloat x2, 
	CGFloat y2, 
	CGFloat radius
)
Parameters
c (IntPtr)
MISSING
x1 (CGFloat)
MISSING
y1 (CGFloat)
MISSING
x2 (CGFloat)
MISSING
y2 (CGFloat)
MISSING
radius (CGFloat)
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)