Point.From Intersection Method
Returns a Point that is the intersection
of two lines.
Definition
Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
A Point structure that contains the co-ordinates of the point where the lines intersect each other.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public static Point FromIntersection(
Polynomial line1,
Polynomial line2
)
Parameters
- line1 Polynomial
- The first line.
- line2 Polynomial
- The second line.
Return Value
PointA Point structure that contains the co-ordinates of the point where the lines intersect each other.
Exceptions
Argument | line1 is null. -or- line2 is null. |
Divide | The two lines are parallel. |