TestPointArrayInPolygon
Tests which points lie inside a polygon.
Syntax
C++
C#
Python
def TestPointArrayInPolygon( inPoints: list[Point2D], inPolygon: Path, / ) -> ( outIsContainedArray: list[bool], outPoints: list[Point2D], outAreAllContained: bool )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoints | list[Point2D] | Points which will be tested | |
![]() |
inPolygon | Path | Polygon against which the points will be tested | |
![]() |
outIsContainedArray | list[bool] | ||
![]() |
outPoints | list[Point2D] | Points that are contained | |
![]() |
outAreAllContained | bool |


