InternalClipperGetLineIntersectPt(PointD, PointD, PointD, PointD, PointD) Method |
Calculates the intersection point of two lines defined by pairs of points.
Namespace: Clipper2LibAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static bool GetLineIntersectPt(
PointD ln1a,
PointD ln1b,
PointD ln2a,
PointD ln2b,
out PointD ip
)
Parameters
- ln1a PointD
- The start point of the first line.
- ln1b PointD
- The end point of the first line.
- ln2a PointD
- The start point of the second line.
- ln2b PointD
- The end point of the second line.
- ip PointD
- The intersection point, if found.
Return Value
Boolean if the lines intersect; otherwise,
.
See Also