TestPointArrayInRectangle
Tests which points lie inside a rectangle.
Syntax
C++
Python
def TestPointArrayInRectangle( inPoints: list[Point2D], inRectangle: Rectangle2D, / ) -> ( outIsContainedArray: list[bool], outPoints: list[Point2D], outAreAllContained: bool )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoints | list[Point2D] | Points which will be tested | |
![]() |
inRectangle | Rectangle2D | ||
![]() |
outIsContainedArray | list[bool] | ||
![]() |
outPoints | list[Point2D] | Points that are contained | |
![]() |
outAreAllContained | bool |


