Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation for stl #5

Open
GoogleCodeExporter opened this issue Jul 29, 2015 · 8 comments
Open

Documentation for stl #5

GoogleCodeExporter opened this issue Jul 29, 2015 · 8 comments

Comments

@GoogleCodeExporter
Copy link

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 [email protected] on 25 Jun 2012 at 11:29

@GoogleCodeExporter
Copy link
Author

[deleted comment]

@GoogleCodeExporter
Copy link
Author

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 [email protected] on 28 Jun 2012 at 10:43

@GoogleCodeExporter
Copy link
Author

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 [email protected] on 28 Jun 2012 at 11:26

@GoogleCodeExporter
Copy link
Author

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 [email protected] on 29 Jun 2012 at 3:29

@GoogleCodeExporter
Copy link
Author

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 [email protected] on 18 Aug 2012 at 2:12

Attachments:

@GoogleCodeExporter
Copy link
Author

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 [email protected] on 29 Aug 2012 at 6:01

@GoogleCodeExporter
Copy link
Author

The latest version now works.  Thanks!

Original comment by [email protected] on 4 Sep 2012 at 1:08

@GoogleCodeExporter
Copy link
Author

What other parameters are we able to set for stl?

Original comment by [email protected] on 17 Mar 2013 at 9:46

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant