InternalClipperGetLineIntersectPt(Point64, Point64, Point64, Point64, Point64) 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(
Point64 ln1a,
Point64 ln1b,
Point64 ln2a,
Point64 ln2b,
out Point64 ip
)
Parameters
- ln1a Point64
- The start point of the first line.
- ln1b Point64
- The end point of the first line.
- ln2a Point64
- The start point of the second line.
- ln2b Point64
- The end point of the second line.
- ip Point64
- The intersection point, if found.
Return Value
Boolean if the lines intersect; otherwise,
.
See Also