Namespace:
EGIS.ShapeFileLib
Assembly: EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)
Assembly: EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)
Syntax
Visual Basic |
---|
Public Shared Function PointInPolygon ( _ data As Byte(), _ offset As Integer, _ numPoints As Integer, _ x As Double, _ y As Double, _ ignoreHoles As Boolean, _ ByRef isHole As Boolean _ ) As Boolean |
C# |
---|
public static bool PointInPolygon( byte[] data, int offset, int numPoints, double x, double y, bool ignoreHoles, ref bool isHole ) |
Visual C++ |
---|
public: static bool PointInPolygon( array<unsigned char>^ data, int offset, int numPoints, double x, double y, bool ignoreHoles, bool% isHole ) |
JavaScript |
---|
EGIS.ShapeFileLib.GeometryAlgorithms.pointInPolygon = function(data, offset, numPoints, x, y, ignoreHoles, isHole); |
Parameters
- data
- Type: array<System..::..Byte>[]()[][]
- offset
- Type: System..::..Int32
- numPoints
- Type: System..::..Int32
- x
- Type: System..::..Double
- y
- Type: System..::..Double
- ignoreHoles
- Type: System..::..Boolean
- isHole
- Type: System..::..Boolean%