Ejemplo n.º 1
0
 public void Connect(MEPPathSection section, MEPPathDirection direction)
 {
     if (direction == MEPPathDirection.Out)
     {
         _out.Add(section);
     }
     if (direction == MEPPathDirection.In)
     {
         _In = section;
     }
 }
Ejemplo n.º 2
0
 public MEPPathSection(Element elm, double pathlength, MEPPathSection parent) : this(elm, pathlength)
 {
     _In = parent;
 }
Ejemplo n.º 3
0
 public MEPPathSection(int orgId, double pathlength, MEPPathSection parent)
 {
     _ordId      = orgId;
     _In         = parent;
     _pathLength = pathlength;
 }