RemoveEmptyBoxes


The input boxes which have both dimensions different from zero are copied to the output.

Applications:Secures against domain errors caused by empty boxes.

Syntax

C++
Python
 
def RemoveEmptyBoxes(
	inBoxes: list[Box],
	/
)
-> (
	outNotEmptyBoxes: list[Box],
	outIsNotEmpty: list[bool]
)

Parameters

Name Type Default Description
Input value inBoxes list[Box]
Output value outNotEmptyBoxes list[Box]
Output value outIsNotEmpty list[bool]