Hello @praful.bharate,
As a continuation from our response to your other post, you can also use a polyhedron selection. But in order to determine the nodes that overlap a given volume (the bounding box), you will need to do two selection operations:
-
In the first selection, set the option
IncrementalPickConfig.mustBeFullyContained
tofalse
. So this selection returns nodes that are fully contained and overlapping with the defined volume. -
In the second selection, set
IncrementalPickConfig.mustBeFullyContained
totrue
which returns only nodes inside the volume. You can then subract the results of the second selection set from the first selection set to arrive at only the nodes that intersect the volume boundaries.
Thanks,
Tino