public string ExecuteTxt(string filepath, string resultfile_prefix, double[] radius_values) { string newFileName = Txt2Pcd.ExecXYZ(filepath); string result_file_name = Execute(newFileName, resultfile_prefix, radius_values); File.Delete(newFileName); return(result_file_name); }
void TransformTxtFileToPcdFile(string txt_path, string separator = " ", string pathappend = "") { Txt2Pcd.ExecXYZ(txt_path, separator, pathappend); }