Delegate to be used during advanced customized searches.
Namespace:
Grasshopper.Kernel.Geometry.SpatialTrees
Assembly:
Grasshopper (in Grasshopper.dll)
Syntax public delegate bool Validation3d<T>(
T element,
int globalIndex,
Node3d<T> node
)
Public Delegate Function Validation3d(Of T) (
element As T,
globalIndex As Integer,
node As Node3d(Of T)
) As Boolean
Parameters
- element
- Type: T
Potential hit. - globalIndex
- Type: SystemInt32
Index of item in global list. - node
- Type: Grasshopper.Kernel.Geometry.SpatialTreesNode3dT
Node containing the element.
Type Parameters
- T
- Element type.
Return Value
Type:
BooleanTrue if item can be included in the search, false if not.
See Also