GetCoordSpherical(this cPointObj obj, string Name, string CSys = "Global")
        {
            double R, A, B;

            R = A = B = default(double);
            var res = obj.GetCoordSpherical(Name, ref R, ref A, ref B, CSys);

            return(R, A, B);
        }