Click or drag to resize

MathHelperArcFromBulge Method

Obtains the data for an arc that has a start point, an end point, and a bulge value.

Namespace:  DXFReaderNET
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntax
public static Tuple<Vector2, double, double, double> ArcFromBulge(
	Vector2 startPoint,
	Vector2 endPoint,
	double bulge
)

Parameters

startPoint
Type: DXFReaderNETVector2
Arc start point.
endPoint
Type: DXFReaderNETVector2
Arc end point.
bulge
Type: SystemDouble
Arc bulge value.

Return Value

Type: TupleVector2, Double, Double, Double
A Tuple(center, radius, startAngle in degrees, endAngle in degrees) with the arc data.
See Also