TestPolygonsIntersect


Tests whether two polygons share any common point.

Syntax

C++
C#
Python
 
def TestPolygonsIntersect(
	inPolygon1: Path,
	inPolygon2: Path,
	/
)
-> outDoIntersect: bool

Parameters

Name Type Default Description
Input value inPolygon1 Path First polygon
Input value inPolygon2 Path Second polygon
Output value outDoIntersect bool True if the polygons share any common point, false otherwise