CADability dotNET
Constructs a circular arc in 2D.

Namespace: CADability.Curve2D
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public Arc2D(
	GeoPoint2D center,
	double radius,
	Angle start,
	SweepAngle sweep
)
Visual Basic
Public Sub New ( _
	center As GeoPoint2D, _
	radius As Double, _
	start As Angle, _
	sweep As SweepAngle _
)
Visual C++
public:
Arc2D(
	GeoPoint2D center, 
	double radius, 
	Angle start, 
	SweepAngle sweep
)

Parameters

center
Type: CADability..::..GeoPoint2D
Center of the arc
radius
Type: System..::..Double
Radius of the Arc
start
Type: CADability..::..Angle
Startangle of the arc (x-axis is 0)
sweep
Type: CADability..::..SweepAngle
Sweepangle of the arc -2*pi<=s<=2*pi

See Also