Class LineIntersection
Line intersection computer.
Inherited Members
Namespace: Advanced.Algorithms.Geometry
Assembly: Advanced.Algorithms.dll
Syntax
public class LineIntersection
Methods
Find(Line, Line, Int32)
Returns Point of intersection if do intersect otherwise default Point (null).
Declaration
public static Point Find(Line lineA, Line lineB, int precision = 5)
Parameters
| Type | Name | Description |
|---|---|---|
| Line | lineA | |
| Line | lineB | |
| Int32 | precision | precision tolerance. |
Returns
| Type | Description |
|---|---|
| Point | The point of intersection. |