Computes an extrusion of positions on the
specified centralBody. One side of the extrusion has a constant
altitude and the other has the original altitudes from
positions.
[Visual Basic .NET] |
---|
Public Function ComputeSingleConstantAltitudeWithWindingOrder( _
ByVal CentralBody As String, _
ByRef Positions As System.Array, _
ByVal Altitude As Double, _
ByVal PositionsWindingOrder As AgEStkGraphicsWindingOrder _
) As IAgStkGraphicsExtrudedPolylineTriangulatorResult
|
[C#] |
---|
public IAgStkGraphicsExtrudedPolylineTriangulatorResult ComputeSingleConstantAltitudeWithWindingOrder(
|
[Managed C++] |
---|
public: IAgStkGraphicsExtrudedPolylineTriangulatorResult^ ComputeSingleConstantAltitudeWithWindingOrder(
|
[Java] |
---|
public IAgStkGraphicsExtrudedPolylineTriangulatorResult computeSingleConstantAltitudeWithWindingOrder(
|
[Unmanaged C++] |
---|
public: HRESULT ComputeSingleConstantAltitudeWithWindingOrder(
|
- CentralBody
- The central body to compute the extrusion on.
- Positions
- An array containing the polyline positions (in the order x, y, z), in the centralBody's fixed reference frame, that should be extruded.
- Altitude
- The extrusion's constant altitude, in meters, above the ellipsoid.
- PositionsWindingOrder
-
Member Value Description eStkGraphicsWindingOrderCounterClockwise 0 Positions or triangles are defined in counter-clockwise order. eStkGraphicsWindingOrderClockwise 1 Positions or triangles are defined in clockwise order. eStkGraphicsWindingOrderCompute 2 The winding order is unknown and should be computed. For best performance, only use this value if you do not know the actual winding order.
Shows the format of
the Positions parameter when computing using an extruded polyline
triangulator.
[C#] | Copy Code | |
---|---|---|
|
Shows the format of
the Positions parameter when computing using an extruded polyline
triangulator.
[Visual Basic .NET] | Copy Code | |
---|---|---|
|