Description
Computes an extrusion of positions on the
specified centralBody with a constant bottomAltitude and
topAltitude. This is equivalent to calling
Compute
with a
positionsWindingOrder of
Compute.
Syntax
Parameters
Example
Shows the format of
the Positions parameter when computing using an extruded polyline
triangulator with altitudes.
| [C#] |
Copy Code
|
Array positions = new object[]
{
6578.14, 0, 0,
6512.79, 653.458, 652.476,
6545.27, 656.718, 0,
6578.14, 0, 0
};
IAgStkGraphicsExtrudedPolylineTriangulatorResult result = sceneManager.Initializers.ExtrudedPolylineTriangulator.ComputeWithAltitudes(
"Earth",
ref positions,
0,
100);
|
|
Shows the format of
the Positions parameter when computing using an extruded polyline
triangulator with altitudes.
| [Visual Basic .NET] |
Copy Code
|
Dim
positions As Array = New
Object() {6578.14, 0, 0, 6512.79,
653.458, 652.476, _
6545.27, 656.718, 0, 6578.14, 0, 0}
Dim result As
IAgStkGraphicsExtrudedPolylineTriangulatorResult =
sceneManager.Initializers.ExtrudedPolylineTriangulator.ComputeWithAltitudes("Earth",
positions, 0, 100)
|
|
See Also