I am a newbie to Cyclone 3DR javascript.
Why do the following code - which should only suppose to import an E57 file - ended successfully but I cannot see the point cloud data in 3dr tree view?
Code: Select all
/// <reference path="C:\Program Files\Leica Geosystems\Cyclone 3DR\Script\JsDoc\Reshaper.d.ts" />
var res = SSurveyingFormat.ImportCloud("C:/Test.e57", 0, true);
if (res.ErrorCode == 0)
{
print("\nThe import of the object succeeded.");
}
else
{
throw new Error("The import of the object failed.");
}