GH_GDI_Util.BoxUnion Method

GH_GDI_UtilBoxUnion Method

Create the outline of a set of boxes.

Namespace:  Grasshopper.GUI
Assembly:  Grasshopper (in Grasshopper.dll)
Syntax
public static List<Point[]> BoxUnion(
	IEnumerable<Rectangle> rectangles
)
Public Shared Function BoxUnion ( 
	rectangles As IEnumerable(Of Rectangle)
) As List(Of Point())

Parameters

rectangles
Type: System.Collections.GenericIEnumerableRectangle
Boxes to union.

Return Value

Type: ListPoint
A list of Point arrays, where each array describes the corners of each silhouette.
See Also