You are here: Start » FIL.NET » Function Reference » Path » Polygon Relations » FIL.TestPointInPolygon
Tests whether a point lies inside a polygon.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void TestPointInPolygon ( FilNet.Point2D inPoint, FilNet.Path inPolygon, out bool outIsContained )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inPoint | FilNet.Point2D | Point the position of which will be tested. | ||
![]() | inPolygon | FilNet.Path | Polygon against which the position will be tested. | ||
![]() | outIsContained | bool | True if point lies inside the polygon, false otherwise. |
Description
The operation tests if inPoint lies inside inPolygon.
Due to inaccuracy of floating point representation a point lying extremely close to a path may considered to be on either of the sides of the path or exactly on the path itself.
Examples
![]() |
![]() |
TestPointInPolygon run on the sample data produces the outIsContained = true |
TestPointInPolygon run on the sample data produces the outIsContained = false |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Empty polygon on input in TestPointInPolygon. |
DomainError | Open path on input in TestPointInPolygon. |