I’d like to load an STL file from a Buffer / ArrayBuffer, rather than a path (URL).
I’ve tried forking the STLLoader.js and three.module.js and editing the DefaultLoadingManager.resolveURL method. But to be honest I’m a bit out of my depth!
Thanks @EliasHasle - but so far, I’ve had no luck with this!
I noticed the ArrayBuffer I get directly from my file is larger than the ArrayBuffer that Three.js creates from the path – so I wonder if that could be part of the problem?
This is the method I’m using to encode my file string:
var enc = new TextEncoder();
var arrayBuffer = enc.encode(fileString).buffer;
Maybe you can use them same approach like in the three.js editor. When a a file is imported (via dialog or Drag’n’Drop), the editor uses the following code section for STL file data.