Computes boundary positions for a circle on the specified centralBody with the specified center and radius. This is equivalent to calling Compute Circle with a granularity of
1
degree.[Visual Basic .NET] |
---|
Public Function ComputeCircle( _ ByVal CentralBody As String, _ ByVal Center As System.Array, _ ByVal Radius As Double _ ) As IAgStkGraphicsSurfaceShapesResult |
[C#] |
---|
public IAgStkGraphicsSurfaceShapesResult ComputeCircle( string CentralBody, System.Array Center, double Radius ); |
[Managed C++] |
---|
public: IAgStkGraphicsSurfaceShapesResult^ ComputeCircle( String __gc ^ CentralBody, System::Array ^ Center, double Radius ); |
[Unmanaged C++] |
---|
public: HRESULT ComputeCircle( BSTR CentralBody, SAFEARRAY * * Center, double Radius, IAgStkGraphicsSurfaceShapesResult ** ppRetVal ); |
[Java] |
---|
public IAgStkGraphicsSurfaceShapesResult computeCircle( String CentralBody, AgSafeArray Center, double Radius ); |
[Python - STK API ] |
---|
def ComputeCircle(self, CentralBody:str, Center:list, Radius:float) -> "IAgStkGraphicsSurfaceShapesResult": |
- CentralBody
- The central body to compute the circle on.
- Center
- An array containing the center of the circle (in the order x, y, z), in the centralBody's fixed reference frame.
- Radius
- The radius of the circle.
Shows the format of the Center parameter when computing a circle.
[C#] | ||
---|---|---|
|
Shows the format of the Center parameter when computing a circle.
[Visual Basic .NET] | ||
---|---|---|
|