MathHelperIntersectionPoints Method
|
Find intersection points of a group of entities.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static List<Vector2> IntersectionPoints(
IEnumerable<EntityObject> Entities
)
Public Shared Function IntersectionPoints (
Entities As IEnumerable(Of EntityObject)
) As List(Of Vector2)
public:
static List<Vector2>^ IntersectionPoints(
IEnumerable<EntityObject^>^ Entities
)
static member IntersectionPoints :
Entities : IEnumerable<EntityObject> -> List<Vector2>
STATIC METHOD IntersectionPoints(
Entities AS IEnumerable<EntityObject>
) AS List<Vector2>
Parameters
- Entities
- Type: System.Collections.GenericIEnumerableEntityObject
The list of entities.
Return Value
Type:
ListVector2A list of the intersection
points.
See Also