コード例 #1
0
ファイル: bool4.glm.cs プロジェクト: xposure/Atma.Math
 /// <summary>
 /// Returns a string representation of this vector using a provided seperator.
 /// </summary>
 public static string ToString(bool4 v, string sep) => v.ToString(sep);
コード例 #2
0
ファイル: bool4.glm.cs プロジェクト: xposure/Atma.Math
 /// <summary>
 /// Returns a string representation of this vector using a provided seperator and a format provider for each component.
 /// </summary>
 public static string ToString(bool4 v, string sep, IFormatProvider provider) => v.ToString(sep, provider);
コード例 #3
0
ファイル: bool4.glm.cs プロジェクト: xposure/Atma.Math
 /// <summary>
 /// Returns a string representation of this vector using ', ' as a seperator.
 /// </summary>
 public static string ToString(bool4 v) => v.ToString();