FollowPathProcedure Constructor (TerrainProvider, IListCartographic, Double, Double, Double) |
Create a new instance based on the given set of vertices with respect to the terrain surface.
Namespace:
AGI.Foundation.RouteDesign
Assembly:
AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public FollowPathProcedure(
TerrainProvider terrainSurface,
IList<Cartographic> vertices,
double turningRadius,
double speed,
double height
)
Public Sub New (
terrainSurface As TerrainProvider,
vertices As IList(Of Cartographic),
turningRadius As Double,
speed As Double,
height As Double
)
public:
FollowPathProcedure(
TerrainProvider^ terrainSurface,
IList<Cartographic>^ vertices,
double turningRadius,
double speed,
double height
)
new :
terrainSurface : TerrainProvider *
vertices : IList<Cartographic> *
turningRadius : float *
speed : float *
height : float -> FollowPathProcedure
Parameters
- terrainSurface
- Type: AGI.Foundation.TerrainTerrainProvider
The terrain provider that defines the reference surface for the vehicle. - vertices
- Type: System.Collections.GenericIListCartographic
The vertices defining a path along the surface. - turningRadius
- Type: SystemDouble
The turning radius to use when turning from one segment to the next, in meters. - speed
- Type: SystemDouble
The target speed of the platform along the path, in meters per second. - height
- Type: SystemDouble
The height of the platform with respect to the terrain, in meters.
See Also