Exemplo n.º 1
0
 /// <summary>
 /// Converts the triangle's data into a human-readable format.
 /// </summary>
 /// <returns>A string containing the triangle's data.</returns>
 public override string ToString()
 {
     return("(" + A.ToString() + ", " + B.ToString() + ", " + C.ToString() + ")");
 }
Exemplo n.º 2
0
 /// <summary>
 /// Returns a string containing the important information for this instance of <see cref="BBox3"/>.
 /// </summary>
 /// <returns>A human-readable string representation of this instance.</returns>
 public override string ToString()
 {
     return("{ Min: " + Min.ToString() + ", Max: " + Max.ToString() + " }");
 }
Exemplo n.º 3
0
 public override string ToString()
 {
     return(_vector.ToString());
 }