Ejemplo n.º 1
0
 public void AddArc(gxtPathArc arc)
 {
     arcs.Add(arc);
 }
Ejemplo n.º 2
0
 private void LinkNodes(gxtPathNode nodeA, gxtPathNode nodeB)
 {
     gxtPathArc arc = new gxtPathArc();
     arc.LinkNodes(nodeA, nodeB);
     nodeA.AddArc(arc);
     nodeB.AddArc(arc);
     arcs.Add(arc);
 }