Create the legList array, and add to each one the corresponding waypoint.

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

Syntax

C#
protected Leg[] CreateAndAddPoints(
	Waypoint[] points
)
Visual Basic
Protected Function CreateAndAddPoints ( _
	points As Waypoint() _
) As Leg()
Visual C++
protected:
array<Leg^>^ CreateAndAddPoints(
	array<Waypoint^>^ points
)

Parameters

points
Type: array<Waypoint>[]()[][]
The waypoints. Must be sorted.

Return Value

[Missing <returns> documentation for "M:FlightPlan.Optimizer.TSPAlgorithms.TSPAlgorithm.CreateAndAddPoints(FlightPlan.Waypoint[])"]

See Also