Google Code Exporter

Results 21406 comments of Google Code Exporter

``` Yes, you're right. I took for granted that the library I have is original and without any modifications but it seems that it was spoiled. So, anyway sorry for...

``` I guess you could check out the latest edition from the repository and see whether it works correctly in your project :-) ``` Original comment by `[email protected]` on 27...

``` Did you also include jsc3d.ctm.js which contains the implementation of the CTM file loader? See this http://jsc3d.googlecode.com/svn/trunk/jsc3d/demos/test.html for an example. ``` Original comment by `[email protected]` on 24 Dec 2014...

``` That is exactly what I need to do! However I cant find that file in my jsc3d-full-1.6.5.rar folder Thank you so much for the quick response! ``` Original comment...

``` Hey I ended up stealing the file from your test site. You should probably add it to the wiki though :) Thanks! I plan to be asking a lot...

``` I'm glad you've solved it. The latest source code is available in the repository. I'll make a new release with all the new features soon. ``` Original comment by...

``` Override viewer.onloadingcomplete (http://jsc3d.googlecode.com/svn/trunk/jsc3d/docs/symbols/JSC3D.Viewer.html#onlo adingcomplete) which will be called immediately as the model is loaded. In this callback function, set a timer to rotate the model a fixed angle around...

``` Thanks for the suggestion! This is not implemented partially because Jsc3d begins with software rendering only, when JavaScript did not run as fast as that in nowadays. Since we...

``` Conceptually, an URL pointing to a local file is acceptable, for example: viewer.replaceSceneFromUrl('./models/sample.obj'); or even an absolute file path: viewer.replaceSceneFromUrl('file:///D:/my_models/stls/sample.stl'); Provided that the host browser allows the XHR object...

``` In your case, just don't call viewer.replaceScene() which replaces current scene, but add the new meshes into it via scene.addChild() each a time like this: // say you already...