ArcObjects Library Reference (Geometry)  

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(
  double* Azimuth,
  double* Inclination,
  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