GetCoordCylindrical(this cPointObj obj, string Name, string CSys = "Global")
        {
            double R, Theta, Z;

            R = Theta = Z = default(double);
            var res = obj.GetCoordCylindrical(Name, ref R, ref Theta, ref Z, CSys);

            return(R, Theta, Z);
        }