MathHelperFootPerpendicular Method
|
Find the foot of a perpendicular.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static Vector2 FootPerpendicular(
Vector2 SegmentStartPoint,
Vector2 SegmentEndPoint,
Vector2 Position
)
Public Shared Function FootPerpendicular (
SegmentStartPoint As Vector2,
SegmentEndPoint As Vector2,
Position As Vector2
) As Vector2
public:
static Vector2 FootPerpendicular(
Vector2 SegmentStartPoint,
Vector2 SegmentEndPoint,
Vector2 Position
)
static member FootPerpendicular :
SegmentStartPoint : Vector2 *
SegmentEndPoint : Vector2 *
Position : Vector2 -> Vector2
STATIC METHOD FootPerpendicular(
SegmentStartPoint AS Vector2,
SegmentEndPoint AS Vector2,
Position AS Vector2
) AS Vector2
Parameters
- SegmentStartPoint
- Type: DXFReaderNETVector2
Start point of the segment - SegmentEndPoint
- Type: DXFReaderNETVector2
End point of the segment - Position
- Type: DXFReaderNETVector2
The given point
Return Value
Type:
Vector2The
foot of a perpendicular.
See Also