Description
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.
Syntax
Parameters
Example
Shows the format of
the Center parameter when computing a circle.
| [C#] |
Copy Code
|
Array center = new object[]
{
1247.87,
-4739.74,
4067.77
};
IAgStkGraphicsSurfaceShapesResult shape = sceneManager.Initializers.SurfaceShapes.ComputeCircle(
"Earth",
ref center,
10000);
|
|
Shows the format of
the Center parameter when computing a circle.
| [Visual Basic .NET] |
Copy Code
|
Dim center
As Array
= New Object() {1247.87, -4739.74, 4067.77}
Dim shape As IAgStkGraphicsSurfaceShapesResult =
sceneManager.Initializers.SurfaceShapes.ComputeCircle("Earth", center, 10000)
|
|
See Also