EllipsoidSurfaceRegionIsPointInsideRegionEpsilon Method  | 
 
            Determines whether the given planetodetic point lies inside the region.
            
 
    Namespace: 
   AGI.Foundation.Geometry.Shapes
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic bool IsPointInsideRegionEpsilon(
	Cartographic point,
	double epsilon
)
Public Function IsPointInsideRegionEpsilon ( 
	point As Cartographic,
	epsilon As Double
) As Boolean
public:
bool IsPointInsideRegionEpsilon(
	Cartographic point, 
	double epsilon
)
member IsPointInsideRegionEpsilon : 
        point : Cartographic * 
        epsilon : float -> bool 
Parameters
- point
 - Type: AGI.Foundation.CoordinatesCartographic
The planetodetic point to test. - epsilon
 - Type: SystemDouble
The distance from the boundary that is still considered within the region. 
Return Value
Type: 
Boolean if the point lies inside the boundary; otherwise 
.
RemarksHeight above the surface is ignored. The distance from the boundary is approximate.
See Also