Creates a ScanPoint object.

Namespace: FlightPlan
Assembly: FlightPlanXML (in FlightPlanXML.dll) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public ScanPoint(
	Stage stg,
	string id,
	Waypoint destination,
	string nextid,
	string previd,
	ContingencyList emergency,
	double cour,
	double d1,
	double d2
)
Visual Basic
Public Sub New ( _
	stg As Stage, _
	id As String, _
	destination As Waypoint, _
	nextid As String, _
	previd As String, _
	emergency As ContingencyList, _
	cour As Double, _
	d1 As Double, _
	d2 As Double _
)
Visual C++
public:
ScanPoint(
	Stage^ stg, 
	String^ id, 
	Waypoint^ destination, 
	String^ nextid, 
	String^ previd, 
	ContingencyList^ emergency, 
	double cour, 
	double d1, 
	double d2
)

Parameters

stg
Type: FlightPlan..::..Stage
Stage the leg belongs to.
id
Type: System..::..String
A String with the leg id.
destination
Type: FlightPlan..::..Waypoint
A Waypoint with the initial fix of the holding pattern.
nextid
Type: System..::..String
A String with the id of the next leg.
previd
Type: System..::..String
A String with the id of the previous leg.
emergency
Type: FlightPlan..::..ContingencyList
A FlightPlan to be executed in case of emergency.
cour
Type: System..::..Double
A Double with the azimuth angle indicating orientation of the eight pattern.
d1
Type: System..::..Double
A Double with the distance between turn centers.
d2
Type: System..::..Double
A Double with the turn diameter.

See Also