New() публичный статический Метод

public static New ( Shred shred, Direction direction ) : Edge
shred Shred
direction Direction
Результат Edge
Пример #1
0
 private void InitializeINode()
 {
     _orientation = Orientation.Regular;
     _parent      = null;
     _rightedge   = Edge.New(this, Direction.FromRight);
     _leftedge    = Edge.New(this, Direction.FromLeft);
 }