MathHelperArcAnglesFrom3Points Method
|
Returns the start angle and the end angle of a arc specifing start point, end point and a point on it.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static void ArcAnglesFrom3Points(
Vector2 StartPoint,
Vector2 MiddlePoint,
Vector2 EndPoint,
out double StartAngle,
out double EndAngle
)
Public Shared Sub ArcAnglesFrom3Points (
StartPoint As Vector2,
MiddlePoint As Vector2,
EndPoint As Vector2,
<OutAttribute> ByRef StartAngle As Double,
<OutAttribute> ByRef EndAngle As Double
)
public:
static void ArcAnglesFrom3Points(
Vector2 StartPoint,
Vector2 MiddlePoint,
Vector2 EndPoint,
[OutAttribute] double% StartAngle,
[OutAttribute] double% EndAngle
)
static member ArcAnglesFrom3Points :
StartPoint : Vector2 *
MiddlePoint : Vector2 *
EndPoint : Vector2 *
StartAngle : float byref *
EndAngle : float byref -> unit
STATIC METHOD ArcAnglesFrom3Points(
StartPoint AS Vector2,
MiddlePoint AS Vector2,
EndPoint AS Vector2,
StartAngle OUT REAL8,
EndAngle OUT REAL8
) AS VOID
Parameters
- StartPoint
- Type: DXFReaderNETVector2
The start point of the arc. - MiddlePoint
- Type: DXFReaderNETVector2
A point of the arc. - EndPoint
- Type: DXFReaderNETVector2
The end point of the arc. - StartAngle
- Type: SystemDouble
Start angle of the arc in degrees. - EndAngle
- Type: SystemDouble
End angle of the arc in degrees.
See Also