Inheritance: Microsoft.Zing.ZingerPluginState
コード例 #1
0
ファイル: Complan.cs プロジェクト: ZingModelChecker/Zing
 public ComplanMotionPlanner()
 {
     complanState = new ComplanMotionPlannerState[ZingerConfiguration.DegreeOfParallelism];
     for(int i = 0; i<ZingerConfiguration.DegreeOfParallelism;i++)
     {
         complanState[i] = new ComplanMotionPlannerState();
     }
 }
コード例 #2
0
ファイル: Complan.cs プロジェクト: ZingModelChecker/Zing
        public override ZingerPluginState Clone()
        {
            var cloneVal = new ComplanMotionPlannerState();
            foreach(var item in Obstacles)
            {
                cloneVal.Obstacles.Add(item);
            }

            return cloneVal;
        }