ProfileRouteConnectionCreateConnection Method |
Create the
ConfigurableConnection used to configure how the route behaves when
transitioning from one procedure to the next.
Namespace:
AGI.Foundation.RouteDesign
Assembly:
AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public override ConfigurableConnection CreateConnection(
ConfigurableSurfaceProcedure previousPath,
ConfigurableSurfaceProcedure nextPath,
RouteProcedure previousProcedure,
RouteProcedure nextProcedure
)
Public Overrides Function CreateConnection (
previousPath As ConfigurableSurfaceProcedure,
nextPath As ConfigurableSurfaceProcedure,
previousProcedure As RouteProcedure,
nextProcedure As RouteProcedure
) As ConfigurableConnection
public:
virtual ConfigurableConnection^ CreateConnection(
ConfigurableSurfaceProcedure^ previousPath,
ConfigurableSurfaceProcedure^ nextPath,
RouteProcedure^ previousProcedure,
RouteProcedure^ nextProcedure
) override
abstract CreateConnection :
previousPath : ConfigurableSurfaceProcedure *
nextPath : ConfigurableSurfaceProcedure *
previousProcedure : RouteProcedure *
nextProcedure : RouteProcedure -> ConfigurableConnection
override CreateConnection :
previousPath : ConfigurableSurfaceProcedure *
nextPath : ConfigurableSurfaceProcedure *
previousProcedure : RouteProcedure *
nextProcedure : RouteProcedure -> ConfigurableConnection
Parameters
- previousPath
- Type: AGI.Foundation.RouteDesign.AdvancedConfigurableSurfaceProcedure
The surface path at the beginning of the connection. - nextPath
- Type: AGI.Foundation.RouteDesign.AdvancedConfigurableSurfaceProcedure
The surface path at the end of the connection. - previousProcedure
- Type: AGI.Foundation.RouteDesignRouteProcedure
The previous procedure with the initial conditions for the connection. - nextProcedure
- Type: AGI.Foundation.RouteDesignRouteProcedure
The next procedure with the final conditions for the connection.
Return Value
Type:
ConfigurableConnectionThe configurable connection.
See Also