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);
 }