Click or drag to resize

SurfaceProcedureConnectionDependency Enumeration

An enumeration indicating how one surface procedure depends on another. Depending on whether a given procedure is defined by its entry or exit, it may require the previous or the next connection to be configured first.

Namespace:  AGI.Foundation.RouteDesign.Advanced
Assembly:  AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public enum SurfaceProcedureConnectionDependency
Members
  Member nameDescription
PreviousConnectionFirst The current procedure requires that its entry geometry be configured prior to anything else.
NextConnectionFirst The current procedure requires that its exit geometry be configured prior to anything else.
BothConnectionsNeeded The current procedure requires that both entry and exit are required to fully define the procedure geometry, which usually indicates that either the entry or exit may need to be reconfigured based on the overall result.
NoDependency The geometry of the current procedure does not depend on the previous or next connection and configuration can proceed in any order.
Remarks
The RoutePropagator will attempt to configure the RouteProcedures in the most efficient order based on their dependency.
See Also