Tagged Questions
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 ...
0
votes
1answer
493 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
161 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/?
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.
...