MathHelperNearestPointToArc Method
|
Finds the nearest point on arc to a given point.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static Vector2 NearestPointToArc(
Arc arc,
Vector2 point
)
Public Shared Function NearestPointToArc (
arc As Arc,
point As Vector2
) As Vector2
public:
static Vector2 NearestPointToArc(
Arc^ arc,
Vector2 point
)
static member NearestPointToArc :
arc : Arc *
point : Vector2 -> Vector2
STATIC METHOD NearestPointToArc(
arc AS Arc,
point AS Vector2
) AS Vector2
Parameters
- arc
- Type: DXFReaderNET.EntitiesArc
The arc - point
- Type: DXFReaderNETVector2
The given point
Return Value
Type:
Vector2The nearest point on arc to a given point
See Also