예제 #1
0
파일: AABB.cs 프로젝트: YeldhamDev/godot
 /// <summary>
 /// Converts this <see cref="AABB"/> to a string with the given <paramref name="format"/>.
 /// </summary>
 /// <returns>A string representation of this AABB.</returns>
 public string ToString(string format)
 {
     return($"{_position.ToString(format)}, {_size.ToString(format)}");
 }
예제 #2
0
파일: Plane.cs 프로젝트: vrid/godot
 /// <summary>
 /// Converts this <see cref="Plane"/> to a string with the given <paramref name="format"/>.
 /// </summary>
 /// <returns>A string representation of this plane.</returns>
 public string ToString(string format)
 {
     return($"{_normal.ToString(format)}, {D.ToString(format)}");
 }