示例#1
0
 /// <summary>
 /// Initializes a new instance of the PathComponent class.
 /// </summary>
 /// <param name="nodes">The path nodes.</param>
 public PathComponent(PathNode[] nodes)
 {
     this.Nodes = nodes;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the LinkedPathNode class.
 /// </summary>
 /// <param name="node">The path node.</param>
 public LinkedPathNode(PathNode node)
 {
     this.Node = node;
     this.links = new List<PathLink>();
 }