Description
Computes a triangulation on the specified
centralBody for the specified extent. This is equivalent to calling
Compute
with an
altitude of
0 and a
granularity of
1 degree.
Syntax
Parameters
Example
Shows the format of
the Extent parameter when computing using a surface extent
triangulator.
| [C#] |
Copy Code
|
//The LongitudeUnit and LatitudeUnit is expected to be in degrees
Array extent = new object[]
{
90,
30,
-77,
39
};
IAgStkGraphicsSurfaceTriangulatorResult result = sceneManager.Initializers.SurfaceExtentTriangulator.ComputeSimple(
"Earth",
ref extent);
|
|
Shows the format of
the Extent parameter when computing using a surface extent
triangulator.
| [Visual Basic .NET] |
Copy Code
|
Dim extent As Array =
New Object() {90, 30, -77, 39}
Dim result As IAgStkGraphicsSurfaceTriangulatorResult =
sceneManager.Initializers.SurfaceExtentTriangulator.ComputeSimple("Earth",
extent)
|
|
See Also