Sets waypoints from the array and propagates the route. The array is two-dimensional where each sub-array contains waypoint's Time, Latitude, Longitude, Altitude and Turn Radius. The array must be in non-decreasing order with respect to time. Time must be in UTCG format.
[Visual Basic .NET] |
---|
Public Sub SetPointsSpecifyTimeAndPropagate( _ ByVal ArrayOfWayPoints As System.Array _ ) |
[C#] |
---|
public void SetPointsSpecifyTimeAndPropagate( System.Array ArrayOfWayPoints ); |
[Managed C++] |
---|
public: void SetPointsSpecifyTimeAndPropagate( System::Array ^ ArrayOfWayPoints ); |
[Unmanaged C++] |
---|
public: HRESULT SetPointsSpecifyTimeAndPropagate( SAFEARRAY * * ArrayOfWayPoints ); |
[Java] |
---|
public void setPointsSpecifyTimeAndPropagate( AgSafeArray ArrayOfWayPoints ); |
[Python - STK API ] |
---|
def SetPointsSpecifyTimeAndPropagate(self, ArrayOfWayPoints:list) -> None: |
- ArrayOfWayPoints
- The array is two-dimensional where each sub-array contains waypoint's Time, Latitude, Longitude, Altitude and Turn Radius. The array must be in non-decreasing order with respect to time. Time must be in UTCG format.