This document is archived and information here might be outdated. Recommended version. |
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,
Boolean* pOutsideView,
Boolean* pTooClose,
Boolean* 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 bool* pTooClose [out]
pTooClose is a parameter of type bool* pTooFar [out]
pTooFar is a parameter of type bool*