Triangle2dIntersectWith Method (LinearEntity2d, Tolerance) |
Gets the intersection points between the current instance and a line using the specified Tolerance.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic List<Point2d> IntersectWith(
LinearEntity2d line2d,
Tolerance tol
)
Public Function IntersectWith (
line2d As LinearEntity2d,
tol As Tolerance
) As List(Of Point2d)
public:
List<Point2d>^ IntersectWith(
LinearEntity2d^ line2d,
Tolerance tol
)
member IntersectWith :
line2d : LinearEntity2d *
tol : Tolerance -> List<Point2d>
Parameters
- line2d
- Type: LinearEntity2d
The line for which the intersections are searched. - tol
- Type: Tolerance
Tolerance to be used for comparisons.
Return Value
Type:
ListPoint2dThe list of intersection points (an empty list if none was found).
See Also