Brep.Intersection (Brep, Brep) Method

Compute the Intersection of the solidA (gray in the sample picture below) with the solidB (blue), and return the resulting array of Brep (green). The returned array may have more than one element if multiple disjoint intersections are found.

Public Shared Function Intersection( _ 
ByVal solidA As Brep, _ 
ByVal solidB As Brep
) As Brep()
This language is not supported or no code example is available.
public static Brep[] Intersection( 
Brep solidA
Brep solidB 
)
This language is not supported or no code example is available.

Parameters

solidA
Brep

First solid

solidB
Brep

Second solid

Return Value

Brep[]

An array of Brep containing the intersections if the operation is successful. If the operation is successful but no intersections are found, an empty array is returned. Otherwise, if due to an error the algorithm fails to compute the intersections, null/Nothing is returned.

.NET Framework

Supported in: 4.8

In this article

Definition