Esempio n. 1
0
File: Edge.cs Progetto: mrommel/dx11
 public override string ToString()
 {
     return("Edge: " + _edgeIndex + "; sites " + _sites[LR.Left] + ", " + _sites[LR.Right]
            + "; endVertices " + (_leftVertex != null ? LeftVertex.ToString() : "null") + ", " +
            (_rightVertex != null ? _rightVertex.ToString() : "null") + "::");
 }
 public override string ToString()
 {
     return(LeftVertex.ToString() + " --> " + RightVertex.ToString());
 }