This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 415
dd041105 21fc d7b8 953e 21e76a498f17
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Obtains the start point, end point, and bulge value from an arc.
Namespace: netDxf
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public static Tuple<Vector2, Vector2, double> ArcToBulge(
Vector2 center,
double radius,
double startAngle,
double endAngle
)
VB
Public Shared Function ArcToBulge (
center As Vector2,
radius As Double,
startAngle As Double,
endAngle As Double
) As Tuple(Of Vector2, Vector2, Double)
C++
public:
static Tuple<Vector2, Vector2, double>^ ArcToBulge(
Vector2 center,
double radius,
double startAngle,
double endAngle
)
F#
static member ArcToBulge :
center : Vector2 *
radius : float *
startAngle : float *
endAngle : float -> Tuple<Vector2, Vector2, float>
- Vector2
- Arc center.
- Double
- Arc radius.
- Double
- Arc start angle in degrees.
- Double
- Arc end angle in degrees.
Tuple(Vector2, Vector2, Double)
A Tuple(start point, end point, bulge value) for the specified arc data.