Display 3D objects with shareable links
-
Hi, I need to display 3D objects in my application directly using shareable links, without downloading the file. I'm using AWS s3 as the cloud storage and 'obj' is the file extension for 3D objects.
Are there any widgets or any ideas to implement this?
Thanks in advance!
-
Hi
How would the OBJ files come from the cloud to the local app without downloading it ??and by shareable links, you mean like URL that once click would download the OBJ file or what would happen ?
-
Hi
How would the OBJ files come from the cloud to the local app without downloading it ??and by shareable links, you mean like URL that once click would download the OBJ file or what would happen ?
@mrjj The shareable link will be fetched from AWS s3. The file should not be downloaded, we must directly render the 3D object using the shareable link.
-
Hi,
You can't avoid bringing the data to your machine. You can use QNetworkAccessManager to grab the file from the S3 storage and keep it in memory.