Click or drag to resize

Triangle2dIntersectWith Method (LinearEntity2d, Tolerance)

Gets the intersection points between the current instance and a line using the specified Tolerance.

Namespace:  Gile.AutoCAD.R20.Geometry
Assembly:  GeometryExtensionsR20 (in GeometryExtensionsR20.dll) Version: 2.2.0.0 (2.2.0.0)
Syntax
public List<Point2d> IntersectWith(
	LinearEntity2d line2d,
	Tolerance tol
)

Parameters

line2d
Type: LinearEntity2d
The line for which the intersections are searched.
tol
Type: Tolerance
Tolerance to be used for comparisons.

Return Value

Type: ListPoint2d
The list of intersection points (an empty list if none was found).
Exceptions
ExceptionCondition
ArgumentNullExceptionArgumentException is thrown if line2d is null.
See Also