Gets the optimized flight plan according to the specified waypoints and the algorithm to be used.

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

Syntax

C#
public static FlightPlan GetOptimizedFlighPlan(
	Waypoint[] wayPoints,
	TSPAlgorithmType algType
)
Visual Basic
Public Shared Function GetOptimizedFlighPlan ( _
	wayPoints As Waypoint(), _
	algType As TSPAlgorithmType _
) As FlightPlan
Visual C++
public:
static FlightPlan^ GetOptimizedFlighPlan(
	array<Waypoint^>^ wayPoints, 
	TSPAlgorithmType algType
)

Parameters

wayPoints
Type: array<Waypoint>[]()[][]
The points where the fly has to pass.
algType
Type: FlightPlan.Optimizer.TSPAlgorithms..::..TSPAlgorithmType
The type of TSP Algorithm to be used.

Return Value

The whole FlightPlan object.

See Also