This document is archived and information here might be outdated.  Recommended version.


IVector3D.PolarQuery Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IV > IVector3D Interface > IVector3D.PolarQuery Method
ArcGIS Developer Help

IVector3D.PolarQuery Method

Get the vector's polar components. Angles are in radians.

[Visual Basic .NET]
Public Sub PolarQuery ( _
    ByRef Azimuth As Double, _
    ByRef Inclination As Double, _
    ByRef radiusLength As Double _
)
[C#]
public void PolarQuery (
    ref double Azimuth,
    ref double Inclination,
    ref double radiusLength
);
[C++]
HRESULT PolarQuery(
  System.Double* Azimuth,
  System.Double* Inclination,
  System.Double* radiusLength
);
[C++]
Parameters
Azimuth [out]

Azimuth is a parameter of type double* Inclination [out]
Inclination is a parameter of type double* radiusLength [out]
radiusLength is a parameter of type double*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Returns the Azimuth, Inclination, and Radius Length (Magnitude) of the 3 Dimensional vector.

Remarks

 

Vector3D PolarQuery Example

See Also

IVector3D Interface