For convenience. Computes an extrusion of positions on the specified centralBody with a constant bottomAltitude and topAltitude using Cartographic positions. Longitude and latitude are in radians, and altitude is in meters. This is equivalent to converting each position in positions to Cartesian and calling Compute
[Visual Basic .NET] |
---|
Public Function ComputeCartographicWithAltitudesAndWindingOrder( _ ByVal CentralBody As String, _ ByRef Positions As System.Array, _ ByVal BottomAltitude As Double, _ ByVal TopAltitude As Double, _ ByVal PositionsWindingOrder As AgEStkGraphicsWindingOrder _ ) As IAgStkGraphicsExtrudedPolylineTriangulatorResult |
[C#] |
---|
public IAgStkGraphicsExtrudedPolylineTriangulatorResult ComputeCartographicWithAltitudesAndWindingOrder( |
[Managed C++] |
---|
public: IAgStkGraphicsExtrudedPolylineTriangulatorResult^ ComputeCartographicWithAltitudesAndWindingOrder( |
[Java] |
---|
public IAgStkGraphicsExtrudedPolylineTriangulatorResult computeCartographicWithAltitudesAndWindingOrder( |
[Unmanaged C++] |
---|
public: HRESULT ComputeCartographicWithAltitudesAndWindingOrder( |
- CentralBody
- The central body to compute the extrusion on.
- Positions
- An array containing the polyline positions that should be extruded, provided in the order latitude, longitude, altitude.
- BottomAltitude
- The extrusion's bottom altitude, in meters, above the ellipsoid.
- TopAltitude
- The extrusion's top altitude, in meters, above the ellipsoid.
- PositionsWindingOrder
The winding order of positions.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 with altitudes and cartographic positions.
[C#] | ![]() | |
---|---|---|
|
Shows the format of the Positions parameter when computing using an extruded polyline triangulator with altitudes and cartographic positions.
[Visual Basic .NET] | ![]() | |
---|---|---|
|