SceneJS is an open source 3D engine for JavaScript which provides a JSON-based API for defining and manipulating 3D scenes on WebGL.

learn more… | top users | synonyms

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
175 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 ...
0
votes
1answer
488 views

Collecting webGL app framerate histogram data

I'm thinking to stick for a particular framework to work for my academic course but only based on results I should prove. I want to plot the graph for all the three frameworks where No.of Vertices is ...
0
votes
1answer
484 views

Adding materials/textures to an existing THREE.Mesh (three.js)

I'm looking for the ability to pull images (from a database or wherever) and overlay these onto a THREE.Mesh (three.js) based on some user input. What I think I need to do is the following: 1) Create ...
1
vote
0answers
135 views

How to do Picking via IdMapping in Scenejs?

We have ONE huge Json Mesh like this which we render with scenejs: {"vertices":[ 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 2.0, 2.0, //... next object ], "normals":[ 0.0, 0.0, 1.0, 0.0, 0.0, ...
3
votes
1answer
160 views

Zoom invariant objects in webgl

WebGl doesn't support line thickness. So when I need to highlight some line, I just draw rectangle around it. But when I zoom scene it looks pretty scary. There are two ways I see now: 1) ...
0
votes
1answer
135 views

SceneJS graphing examples

Are there any good open source SceneJS examples that can graph functions similar to those demonstrated in http://www.graphycalc.com/?
7
votes
1answer
2k views

Convert 3D model to SceneJS JSON, including texture

Motive I'm trying to create a small demo application using WebGL. I chose to use SceneJS, because it seemed an easy framework and would more than suffice for this purpose. I have downloaded a couple ...
2
votes
1answer
394 views

WebGL animation flickering, object too big?

I created a webgl animation using scenejs library (start it by clicking the button at the bottom left, note it plays music as well which you can't currently disable). The problem I am encountering ...
0
votes
1answer
275 views

Reusing JSON object nodes with SceneJS

I've created a webgl animation using the scenejs framework. As it'll contain a lot of identical elements, I want to minimize the amount of code used and re-use the elements as much as possible. ...