This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > GlobeCore > ESRI.ArcGIS.GlobeCore > Interfaces > IG > IGlobeViewUtil Interface > IGlobeViewUtil.GetIsPointVisible Method (ArcObjects .NET 10.5 SDK) |
Detect if point with geocentric coordinates is outside the pyramidal view, too close to the viewpoint, or too far from it.
[Visual Basic .NET] Public Sub GetIsPointVisible ( _ ByVal X As Double, _ ByVal Y As Double, _ ByVal Z As Double, _ ByRef pOutsideView As Boolean, _ ByRef pTooClose As Boolean, _ ByRef pTooFar As Boolean _ )
[C#] public void GetIsPointVisible ( double X, double Y, double Z, ref bool pOutsideView, ref bool pTooClose, ref bool pTooFar );
[C++]
HRESULT GetIsPointVisible(
double X,
double Y,
double Z,
VARIANT_BOOL* pOutsideView,
VARIANT_BOOL* pTooClose,
VARIANT_BOOL* pTooFar
);
[C++]
Parameters X [in] X is a parameter of type double Y [in] Y is a parameter of type double Z [in] Z is a parameter of type double pOutsideView [out] pOutsideView is a parameter of type VARIANT_BOOL pTooClose [out] pTooClose is a parameter of type VARIANT_BOOL pTooFar [out] pTooFar is a parameter of type VARIANT_BOOL