For convenience. Updates a subset of positions in a polyline using Cartographic positions. This is equivalent to converting each position in positions to Cartesian and calling SetPartial.
[Visual Basic .NET] |
---|
Public Sub SetPartialCartographicWithIndicesOrder( _ ByVal CentralBody As String, _ ByVal Positions As System.Array, _ ByVal Indices As System.Array, _ ByVal IndicesOrderHint As AgEStkGraphicsIndicesOrderHint _ ) |
[C#] |
---|
public void SetPartialCartographicWithIndicesOrder( string CentralBody, System.Array Positions, System.Array Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint ); |
[Managed C++] |
---|
public: void SetPartialCartographicWithIndicesOrder( String __gc ^ CentralBody, System::Array ^ Positions, System::Array ^ Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint ); |
[Unmanaged C++] |
---|
public: HRESULT SetPartialCartographicWithIndicesOrder( BSTR CentralBody, SAFEARRAY * * Positions, SAFEARRAY * * Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint ); |
[Java] |
---|
public void setPartialCartographicWithIndicesOrder( String CentralBody, AgSafeArray Positions, AgSafeArray Indices, AgEStkGraphicsIndicesOrderHint IndicesOrderHint ); |
[Python - STK API ] |
---|
def SetPartialCartographicWithIndicesOrder(self, CentralBody:str, Positions:list, Indices:list, IndicesOrderHint:"AgEStkGraphicsIndicesOrderHint") -> None: |
- CentralBody
- The central body the positions are defined on.
- Positions
- An array containing new positions used to update a subset of positions in the polyline, provided in the order latitude, longitude, altitude.
- Indices
- An array of integers containing the indices into positions. A set of latitude, longitude, and altitude elements is considered a single index.
- IndicesOrderHint
See SetPartial for a full discussion.
Shows the format of the Positions, Colors and Indices parameters when updating a polyline primitive with cartographic positions.
[C#] | ||
---|---|---|
|
Shows the format of the Positions, Colors and Indices parameters when updating a polyline primitive with cartographic positions.
[Visual Basic .NET] | ||
---|---|---|
|