MonobjcMonobjc Documented Class Library
AppendBezierPathWithArcWithCenterRadiusStartAngleEndAngleClockwise Method (center, radius, startAngle, endAngle, clockwise)
NamespacesMonobjc.AppKitNSBezierPathAppendBezierPathWithArcWithCenterRadiusStartAngleEndAngleClockwise(NSPoint, CGFloat, CGFloat, CGFloat, Boolean)

Appends an arc of a circle to the receiver’s path.

Original signature is '- (void)appendBezierPathWithArcWithCenter:(NSPoint)center radius:(CGFloat)radius startAngle:(CGFloat)startAngle endAngle:(CGFloat)endAngle clockwise:(BOOL)clockwise'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void AppendBezierPathWithArcWithCenterRadiusStartAngleEndAngleClockwise(
	NSPoint center,
	CGFloat radius,
	CGFloat startAngle,
	CGFloat endAngle,
	bool clockwise
)
Public Overridable Sub AppendBezierPathWithArcWithCenterRadiusStartAngleEndAngleClockwise ( _
	center As NSPoint, _
	radius As CGFloat, _
	startAngle As CGFloat, _
	endAngle As CGFloat, _
	clockwise As Boolean _
)
public:
virtual void AppendBezierPathWithArcWithCenterRadiusStartAngleEndAngleClockwise(
	NSPoint center, 
	CGFloat radius, 
	CGFloat startAngle, 
	CGFloat endAngle, 
	bool clockwise
)
Parameters
center (NSPoint)
Specifies the center point of the circle used to define the arc.
radius (CGFloat)
Specifies the radius of the circle used to define the arc.
startAngle (CGFloat)
Specifies the starting angle of the arc, measured in degrees counterclockwise from the x-axis.
endAngle (CGFloat)
Specifies the end angle of the arc, measured in degrees counterclockwise from the x-axis.
clockwise (Boolean)
YES if you want the arc to be drawn in a clockwise direction; otherwise NO to draw the arc in a counterclockwise direction.
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)