MathHelperFindLineLineIntersection Method
|
Calculates the intersection point of two lines.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static Vector2 FindLineLineIntersection(
Line Line1,
Line Line2
)
Public Shared Function FindLineLineIntersection (
Line1 As Line,
Line2 As Line
) As Vector2
public:
static Vector2 FindLineLineIntersection(
Line^ Line1,
Line^ Line2
)
static member FindLineLineIntersection :
Line1 : Line *
Line2 : Line -> Vector2
STATIC METHOD FindLineLineIntersection(
Line1 AS Line,
Line2 AS Line
) AS Vector2
Parameters
- Line1
- Type: DXFReaderNET.EntitiesLine
The first line. - Line2
- Type: DXFReaderNET.EntitiesLine
The second line.
Return Value
Type:
Vector2The intersection point.
See Also