Skip to content

Instantly share code, notes, and snippets.

@maz-1
Last active July 4, 2021 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maz-1/3f7c0c8a9ec048598f1f109869929ee1 to your computer and use it in GitHub Desktop.
Save maz-1/3f7c0c8a9ec048598f1f109869929ee1 to your computer and use it in GitHub Desktop.
var format = ".pts";
var filepath = new String();
filepath = "C:\\Users\\benoit.passot\\Documents\\";
var arrayCloudToExport=SCloud.FromSel();
for (i=0; i<arrayCloudToExport.length;i=i+1)
{
var myCloudToExport=arrayCloudToExport[i];
var myAlignedCloudName=myCloudToExport.GetName();
var myFilePath1 = filepath;
myFilePath1 += myAlignedCloudName;
myFilePath1 += format;
myCloudToExport.Save(myFilePath1,'.',false )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment