2D and 3D image code
Hello All,
I have been programming a step by step instruction, and noticed these issues when showing images:
This works fine with 2D images:
$scope.view.wdg["image-1"]['imgsrc'] = 'app/resources/Uploaded/1. Checkliste Werkzeug.png';
Note that the file name has spaces and dots.
This will not work for 3D images:
$scope.view.wdg["3DImage-1"]['src'] = 'app/resources/Uploaded/1. Checkliste Werkzeug.png';
But this works:
$scope.view.wdg["3DImage-1"]['src'] = 'app/resources/Uploaded/1_Checkliste_Werkzeug.png';
Why do the spaces and dots work in the 2D image file names but not for the 3D?
Also I've noticed that SVG files do not work for 3D images on my Apple Iphone and Ipad devices.
Best wishes,
Alex

