MonobjcMonobjc Documented Class Library
AppendBezierPathWithArcWithCenterRadiusStartAngleEndAngle Method (center, radius, startAngle, endAngle)
NamespacesMonobjc.AppKitNSBezierPathAppendBezierPathWithArcWithCenterRadiusStartAngleEndAngle(NSPoint, CGFloat, CGFloat, CGFloat)

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'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void AppendBezierPathWithArcWithCenterRadiusStartAngleEndAngle(
	NSPoint center,
	CGFloat radius,
	CGFloat startAngle,
	CGFloat endAngle
)
Public Overridable Sub AppendBezierPathWithArcWithCenterRadiusStartAngleEndAngle ( _
	center As NSPoint, _
	radius As CGFloat, _
	startAngle As CGFloat, _
	endAngle As CGFloat _
)
public:
virtual void AppendBezierPathWithArcWithCenterRadiusStartAngleEndAngle(
	NSPoint center, 
	CGFloat radius, 
	CGFloat startAngle, 
	CGFloat endAngle
)
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.
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)