hudsonandtask / jsc3d

Automatically exported from code.google.com/p/jsc3d
0 stars 0 forks source link

Documentation for stl #5

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Is there some documentation explaining how to get this script to display an stl 
file.  All the examples work on obj files.

TIA

Original issue reported on code.google.com by dan...@sarandaniel.com on 25 Jun 2012 at 11:29

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
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:

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
The latest version now works.  Thanks!

Original comment by huene...@gmail.com on 4 Sep 2012 at 1:08

GoogleCodeExporter commented 9 years ago
What other parameters are we able to set for stl?

Original comment by simond...@gmail.com on 17 Mar 2013 at 9:46