FollowPathProcedure Constructor (Ellipsoid, IListCartographic, Double, ConstantHeightProfile) |
Create a new instance based on the given set of vertices and specified profile.
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(
Ellipsoid surfaceShape,
IList<Cartographic> vertices,
double turningRadius,
ConstantHeightProfile profile
)
Public Sub New (
surfaceShape As Ellipsoid,
vertices As IList(Of Cartographic),
turningRadius As Double,
profile As ConstantHeightProfile
)
public:
FollowPathProcedure(
Ellipsoid^ surfaceShape,
IList<Cartographic>^ vertices,
double turningRadius,
ConstantHeightProfile^ profile
)
new :
surfaceShape : Ellipsoid *
vertices : IList<Cartographic> *
turningRadius : float *
profile : ConstantHeightProfile -> FollowPathProcedure
Parameters
- 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. - profile
- Type: AGI.Foundation.RouteDesignConstantHeightProfile
The profile specifying the height and the speed along the path.
Remarks
To specify the position driving along a road whose surface is defined above a terrain reference surface,
use a
ConstantHeightProfile with its reference surface set to the respective
TerrainProvider.
See Also