Convert a Vector3 value to a string with the given separator character.
Namespace: Demo3D.CommonAssembly: Demo3D.Common (in Demo3D.Common.dll) Version: 19.01.00
Syntaxpublic static string Format(
Vector3 v,
char separator = ''
)
Parameters
- v Vector3
- The Vector3 to convert to s string.
- separator Char (Optional)
- The character to use to separate the x from the y, and the y from the z.
Return Value
StringA string representing the Vector3.
RemarksThe numbers in the string will be CultureInvariant (use . instead of ,).
See Also