コード例 #1
0
 /// <summary>
 /// Creates a String Representation of this Vector.
 /// </summary>
 /// <returns>String representation of this Vector.</returns>
 public override string ToString()
 {
     return($"[{_direction.ToString()}; Length: {_length:0.00}]");
 }
コード例 #2
0
 /// <summary>
 /// Creates a String Representation of this Vertex.
 /// </summary>
 /// <returns>String representation of this Vertex.</returns>
 public override string ToString()
 {
     return($"[{_position.ToString()}]");
 }