Creates a Default FlightPlan according to the specified fixes and legs lists.

Namespace: FlightPlan.Optimizer
Assembly: FlightPlanOptimizer (in FlightPlanOptimizer.exe) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static FlightPlan GetDefaultFlightPlan(
	Fix[] fixList,
	Leg[] legList
)
Visual Basic
Public Shared Function GetDefaultFlightPlan ( _
	fixList As Fix(), _
	legList As Leg() _
) As FlightPlan
Visual C++
public:
static FlightPlan^ GetDefaultFlightPlan(
	array<Fix^>^ fixList, 
	array<Leg^>^ legList
)

Parameters

fixList
Type: array<Fix>[]()[][]
The list containing the fixes.
legList
Type: array<Leg>[]()[][]
The list containing the sorted legs.

Return Value

The FlighPlan object by default.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionIf some list is null or empty.

See Also