0
votes
0answers
30 views

Display a simple - but huge - set of 3D points using SceneJS

I'm trying to use the SceneJS library to display a set of over 65000 3D points. Adding for each point a tiny "cube" node to the scene is of course very inefficient when it comes to rotating the view! ...
0
votes
0answers
75 views

Level of Detail and scene.js 2.0.0

I saw a description of how to use scene.js and set up several levels of detail (and there was a youtube video on this), but this demo was for version 0.7. Is there any documentation on how to use LOD ...
0
votes
1answer
58 views

What is wrong in my SceneJS Code?

My Html Code: <body onload= "main()" bgcolor="white"> <div> <label id="3dobjects">test</label> </br> <canvas id="theCanvas" ...
0
votes
1answer
42 views

How to Distribute Random cubes in a Scene using SceneJS?

<head> <title> SceneJS Test</title> <script type="text/javascript" src="resources/scenejs.js"></script> </head> I want to distribute cubes randomly on the ...
-1
votes
1answer
174 views

Where to find any example loading json model in scenejs?

I've a JSON model with vertices, uvs, indices etc which is exported using Blender. It works fine with other frameworks. I also want to try it using ScenejS. But couldn't find decent example ...