Open GoogleCodeExporter opened 9 years ago
[deleted comment]
I'm sorry for the lack of tutorials :-(
This snippet demonstrates how to work with STL files:
var canvas = document.getElementById('your-canvas-id');
var viewer = new JSC3D.Viewer(canvas);
viewer.setParameter('SceneUrl', 'your-stl-model.stl');
... (other parameters) ...
viewer.setParameter('RenderMode', 'flat');
viewer.init();
viewer.update();
If you want to load an STL model at runtime, just use
Viewer.replaceSceneFromUrl() method:
viewer.replaceSceneFromUrl('another-stl-model.stl');
That's it.
Original comment by Humu2...@gmail.com
on 28 Jun 2012 at 10:43
Thanks for that.
It doesn't seem to work though.
I just get a graduated background and no image.
Developer console in Chrome doesn't see the stl file being loaded.
Am I missing something? Are there any required parameters?
Thanks.
D.
Original comment by dan...@sarandaniel.com
on 28 Jun 2012 at 11:26
Does the XHR request finish correctly? If it does, there will be a message "XHR
finished loading: ..." printed in the console. If this does not appear, you may
have a wrong model url. Otherwise, the STL file may be corrupted or in
non-standard format. In this case you should check it using a modeling
software. Or could you upload the file as an attachment here? I'll see it as
soon as possible.
Original comment by Humu2...@gmail.com
on 29 Jun 2012 at 3:29
I'm running into the same problem described here, and I'm just using the STL
files in the demo/models area of your site. None of the STLs in the demo area
work for me, but the obj files do.
Original comment by huene...@gmail.com
on 18 Aug 2012 at 2:12
Attachments:
It seems work fine in my test. I guess you might be confused by a dated version
of jsc3d. Please get the latest code from the svn repository.
Original comment by Humu2...@gmail.com
on 29 Aug 2012 at 6:01
The latest version now works. Thanks!
Original comment by huene...@gmail.com
on 4 Sep 2012 at 1:08
What other parameters are we able to set for stl?
Original comment by simond...@gmail.com
on 17 Mar 2013 at 9:46
Original issue reported on code.google.com by
dan...@sarandaniel.com
on 25 Jun 2012 at 11:29