FollowPathProcedure Constructor (Ellipsoid, IListCartographic, Double, Double, Double, RouteHeightReference) | 
 
            Create a new instance based on the given set of vertices.
            
 
    Namespace: 
   AGI.Foundation.RouteDesign
    Assembly:
   AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic FollowPathProcedure(
	Ellipsoid surfaceShape,
	IList<Cartographic> vertices,
	double turningRadius,
	double speed,
	double height,
	RouteHeightReference heightReference
)
Public Sub New ( 
	surfaceShape As Ellipsoid,
	vertices As IList(Of Cartographic),
	turningRadius As Double,
	speed As Double,
	height As Double,
	heightReference As RouteHeightReference
)
public:
FollowPathProcedure(
	Ellipsoid^ surfaceShape, 
	IList<Cartographic>^ vertices, 
	double turningRadius, 
	double speed, 
	double height, 
	RouteHeightReference heightReference
)
new : 
        surfaceShape : Ellipsoid * 
        vertices : IList<Cartographic> * 
        turningRadius : float * 
        speed : float * 
        height : float * 
        heightReference : RouteHeightReference -> FollowPathProcedureParameters
- surfaceShape
 - Type: AGI.Foundation.Geometry.ShapesEllipsoid
The shape of the surface over which to traverse. - vertices
 - Type: System.Collections.GenericIListCartographic
The list of vertices that define the waypoints of the path. - turningRadius
 - Type: SystemDouble
The turning radius to use when turning at waypoints, in meters. - speed
 - Type: SystemDouble
The speed at which to move along the surface, in meters per second. - height
 - Type: SystemDouble
The height above the surface at which to traverse the path, in meters. - heightReference
 - Type: AGI.Foundation.RouteDesignRouteHeightReference
An enumeration indicating with respect to which reference surface the given 
            height is defined. 
See Also