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