Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic
Public Shared Function PolygonPolygonIntersect ( _
	points1 As PointD(), _
	points1Count As Integer, _
	points2 As PointD(), _
	points2Count As Integer _
) As Boolean
C#
public static bool PolygonPolygonIntersect(
	PointD[] points1,
	int points1Count,
	PointD[] points2,
	int points2Count
)
Visual C++
public:
static bool PolygonPolygonIntersect(
	array<PointD>^ points1, 
	int points1Count, 
	array<PointD>^ points2, 
	int points2Count
)
JavaScript
EGIS.ShapeFileLib.GeometryAlgorithms.polygonPolygonIntersect = function(points1, points1Count, points2, points2Count);

Parameters

points1
Type: array<EGIS.ShapeFileLib..::..PointD>[]()[][]
points1Count
Type: System..::..Int32
points2
Type: array<EGIS.ShapeFileLib..::..PointD>[]()[][]
points2Count
Type: System..::..Int32

See Also