Class LineSegmentExtensions
Line segment extension methods.
Inheritance
System.Object
LineSegmentExtensions
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Elements.Geometry
Assembly: Hypar.Elements.dll
Syntax
public static class LineSegmentExtensions
Methods
Intersections(IList<Line>)
Find all intersections of the provided collection of lines.
Declaration
public static List<Vector3> Intersections(this IList<Line> items)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.IList<Line> | items | A collection of lines. |
Returns
| Type | Description |
|---|---|
| System.Collections.Generic.List<Vector3> | A collection of unique intersection points. |