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
Syntaxpublic static Tuple<Vector2, double, double, double> ArcFromBulge(
Vector2 startPoint,
Vector2 endPoint,
double bulge
)
Public Shared Function ArcFromBulge (
startPoint As Vector2,
endPoint As Vector2,
bulge As Double
) As Tuple(Of Vector2, Double, Double, Double)
public:
static Tuple<Vector2, double, double, double>^ ArcFromBulge(
Vector2 startPoint,
Vector2 endPoint,
double bulge
)
static member ArcFromBulge :
startPoint : Vector2 *
endPoint : Vector2 *
bulge : float -> Tuple<Vector2, float, float, float>
STATIC METHOD ArcFromBulge(
startPoint AS Vector2,
endPoint AS Vector2,
bulge AS REAL8
) AS Tuple<Vector2, REAL8, REAL8, REAL8>
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,
DoubleA Tuple(center, radius, startAngle in degrees, endAngle in degrees) with the arc data.
See Also