コード例 #1
0
ファイル: PfcStep.cs プロジェクト: sjvannTMU/Sage
 /// <summary>
 /// Returns the actions under this Step as a procedure function chart.
 /// </summary>
 /// <param name="autoFlatten">if set to <c>true</c>, flattens each PFC under this step and its actions and their steps' actions.</param>
 /// <returns>A procedure function chart containing the actions under this Step.</returns>
 public ProcedureFunctionChart ToProcedureFunctionChart(bool autoFlatten)
 {
     return(ProcedureFunctionChart.CreateFromStep(this, autoFlatten));
 }
コード例 #2
0
ファイル: PfcStep.cs プロジェクト: sjvannTMU/Sage
 /// <summary>
 /// Returns the actions under this Step as a procedure function chart.
 /// </summary>
 /// <returns>A procedure function chart containing the actions under this Step.</returns>
 public ProcedureFunctionChart ToProcedureFunctionChart()
 {
     return(ProcedureFunctionChart.CreateFromStep(this, false));
 }