For convenience. Computes boundary positions for a circle on the specified centralBody using a Cartographic center. This is equivalent to converting center to Cartesian and calling Compute Circle.
[Visual Basic .NET] |
---|
Public Function ComputeCircleCartographicWithGranularity( _ ByVal CentralBody As String, _ ByVal Center As System.Array, _ ByVal Radius As Double, _ ByVal Granularity As Double _ ) As IAgStkGraphicsSurfaceShapesResult |
[C#] |
---|
public IAgStkGraphicsSurfaceShapesResult ComputeCircleCartographicWithGranularity( string CentralBody, System.Array Center, double Radius, double Granularity ); |
[Managed C++] |
---|
public: IAgStkGraphicsSurfaceShapesResult^ ComputeCircleCartographicWithGranularity( String __gc ^ CentralBody, System::Array ^ Center, double Radius, double Granularity ); |
[Unmanaged C++] |
---|
public: HRESULT ComputeCircleCartographicWithGranularity( BSTR CentralBody, SAFEARRAY * * Center, double Radius, double Granularity, IAgStkGraphicsSurfaceShapesResult ** ppRetVal ); |
[Java] |
---|
public IAgStkGraphicsSurfaceShapesResult computeCircleCartographicWithGranularity( String CentralBody, AgSafeArray Center, double Radius, double Granularity ); |
[Python - STK API ] |
---|
def ComputeCircleCartographicWithGranularity(self, CentralBody:str, Center:list, Radius:float, Granularity:float) -> "IAgStkGraphicsSurfaceShapesResult": |
- CentralBody
- The central body to compute the circle on.
- Center
- An array containing the center of the circle, in the order latitude, longitude, altitude.
- Radius
- The radius of the circle.
- Granularity
- The angular separation of positions along the boundary.
Shows the format of the Center parameter when computing a circle with a cartographic position.
[C#] | ||
---|---|---|
|
Shows the format of the Center parameter when computing a circle with a cartographic position.
[Visual Basic .NET] | ||
---|---|---|
|