TestPointArrayInBox


Tests which points lie inside a box.

Syntax

C++
Python
 
def TestPointArrayInBox(
	inPoints: list[Point2D],
	inBox: Box,
	/
)
-> (
	outIsContainedArray: list[bool],
	outPoints: list[Point2D],
	outAreAllContained: bool
)

Parameters

Name Type Default Description
Input value inPoints list[Point2D] Points which will be tested
Input value inBox Box
Output value outIsContainedArray list[bool]
Output value outPoints list[Point2D] Points that are contained
Output value outAreAllContained bool