MathHelperCircleCenterFrom3Points Method
|
Returns the center point of a arc/circle passing for three points.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static Vector2 CircleCenterFrom3Points(
Vector2 FirstPoint,
Vector2 SecondPoint,
Vector2 ThirdPoint
)
Public Shared Function CircleCenterFrom3Points (
FirstPoint As Vector2,
SecondPoint As Vector2,
ThirdPoint As Vector2
) As Vector2
public:
static Vector2 CircleCenterFrom3Points(
Vector2 FirstPoint,
Vector2 SecondPoint,
Vector2 ThirdPoint
)
static member CircleCenterFrom3Points :
FirstPoint : Vector2 *
SecondPoint : Vector2 *
ThirdPoint : Vector2 -> Vector2
STATIC METHOD CircleCenterFrom3Points(
FirstPoint AS Vector2,
SecondPoint AS Vector2,
ThirdPoint AS Vector2
) AS Vector2
Parameters
- FirstPoint
- Type: DXFReaderNETVector2
First point. - SecondPoint
- Type: DXFReaderNETVector2
Second point. - ThirdPoint
- Type: DXFReaderNETVector2
Third point.
Return Value
Type:
Vector2The
center point.
See Also