Geotools.Net

CGAlgorithms.IsPointInRing Method 

Tests whether a point lies inside a simple ring. The ring may be oriented in either direction. If the point lies on the ring boundary the result of this method is unspecified.

[Visual Basic]
MustOverride Public Function IsPointInRing( _
   ByVal p As Coordinate, _
   ByVal ring As Coordinates _
) As Boolean
[C#]
public abstract bool IsPointInRing(
   Coordinate p,
   Coordinates ring
);

Parameters

p
Point to test.
ring
Simple polygon ring to test if point lies inside.

Return Value

Returns true if the point lies in the interior of the ring.

Remarks

Missing <remarks> documentation for M:Geotools.Algorithms.CGAlgorithms.IsPointInRing(Geotools.Geometries.Coordinate,Geotools.Geometries.Coordinates)

See Also

CGAlgorithms Class | CGAlgorithms Members | Geotools.Algorithms Namespace