public static void Write(TextWriter os, string name, Vector3 x) { string s = GTTools.Format("({0},{1},{2})", x.x.ToString("0.00"), x.y.ToString("0.00"), x.z.ToString("0.00")); os.WriteLine("<{0}>{1}</{0}>", name, s); }