Description
For convenience. Computes boundary positions for a circle on the specified centralBody using a cartographic center. Longitude and latitude are in radians, and altitude is in meters. This is equivalent to converting center to cartesian and calling ComputeCircle
Syntax
Parameters
See Also
Example
Shows the format of the Center parameter when computing a circle with a cartographic position.
| [C#] |
|---|
Array center = new object[]
{
39.88,
-75.25,
0.0
};
IAgStkGraphicsSurfaceShapesResult shape = sceneManager.Initializers.SurfaceShapes.ComputeCircleCartographic(
"Earth",
ref center,
10000);
|
|
Shows the format of the Center parameter when computing a circle with a cartographic position.
| [Visual Basic .NET] |
|---|
Dim center As Array = New Object() {39.88, -75.25, 0}
Dim shape As IAgStkGraphicsSurfaceShapesResult = sceneManager.Initializers.SurfaceShapes.ComputeCircleCartographic("Earth", center, 10000)
|
|