/// <summary> /// Returns a string representation of this vector using a provided seperator. /// </summary> public static string ToString <T>(gvec4 <T> v, string sep) => v.ToString(sep);
/// <summary> /// Returns a string representation of this vector using ', ' as a seperator. /// </summary> public static string ToString <T>(gvec4 <T> v) => v.ToString();