コード例 #1
0
 public P2PPoseCalculator(TimeSpan created, IClearanceHandlingMotionProfile motionProfile, IEnumerable <IP2PDirectedEdge> directedEdges)
 {
     Created        = created;
     _motionProfile = motionProfile;
     DirectedEdges  = directedEdges.ToList();
     Edges          = directedEdges.Select(e => e.Edge).ToList();
 }
コード例 #2
0
 public P2PPoseCalculator(TimeSpan created, IClearanceHandlingMotionProfile motionProfile, params IP2PDirectedEdge[] edges)
     : this(created, motionProfile, edges.ToList())
 {
 }