TestPolygonInPolygon


Tests whether a polygon lies inside another one.

Syntax

C++
C#
Python
 
def TestPolygonInPolygon(
	inSubPolygon: Path,
	inPolygon: Path,
	/
)
-> outIsContained: bool

Parameters

Name Type Default Description
Input value inSubPolygon Path Polygon the position of which will be tested
Input value inPolygon Path Polygon against which the position will be tested
Output value outIsContained bool True if whole polygon lies inside the other one, false otherwise