|
LineGetIntersectionWith Method (Line)
|
Finds intersection point with the specified line.
Namespace:
Accord.Math.Geometry
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public Nullable<Point> GetIntersectionWith(
Line secondLine
)
Public Function GetIntersectionWith (
secondLine As Line
) As Nullable(Of Point)
Request Example
View SourceParameters
- secondLine
- Type: Accord.Math.GeometryLine
Line to find intersection with.
Return Value
Type:
NullablePointReturns intersection point with the specified line, or
if the lines are parallel and distinct.
Exceptions Exception | Condition |
---|
InvalidOperationException | Thrown if the specified line is the same line as this line. |
See Also