Tagged Questions
1
vote
2answers
52 views
Using THREEJS, i am trying to have a toggle for fog in a scene
EDIT: You cannot add FOG after the scene is rendered because it has to do computations with shaders.
IF you do it, it will show the machine down because ALL shaders will have to be rerendered.
...
0
votes
1answer
61 views
Bar chart plotted on world map
Is there any way to plot bar charts on world map. The world map can be of 3D view like a Globe or 2D view. It should be also be able to zoom into street level. Could someone give me some ideas and ...
1
vote
1answer
38 views
WebGL: Reuse assets when reusing a canvas
I'm writing a small tool which allows developers to render certain 3D content on a canvas using WebGL.
It will be used by specifying a view and camera, like this simplified example:
displayView( ...
0
votes
1answer
57 views
How do I reduce the opacity of the 3D objects that are not selected upon mousedown?
Essentially, I was wondering how do I reduce the opacity of all the 3D objects within the scene that are not selected upon mousedown? That is, if I select one object (That object's opacity is 1) and ...
1
vote
0answers
75 views
getting position of collada model in three.js
I have created a simple life bar using css.
#enemy {
background-color: black;
border-radius: 7px;
padding: 3px;
width: 100px;
}
#enemy div {
...
0
votes
0answers
16 views
How to add labels in webgl [duplicate]
I would like to know how to add labels in graphics plotted using webgl. I tried searching for it, but the search did not yield any result. Can anyone help me with this.
0
votes
0answers
72 views
How to add label to plotted lines in webgl connected earth
I want to add index or some label to the connected lines in connected earth project of webgl. It would be alot helpful if someone could help me on this. I could not figure out where to include the ...
1
vote
1answer
311 views
why is my game so slow in firefox?
I was playing around with the new HTML5 standards to see what it can provide and to learn stuff... But I don't get why my game is so slow mosly in firefox.
There is several ways you can choose to ...
1
vote
1answer
377 views
how to rotate sphere around specific point in three.js? [closed]
Its the first time to me in learning 3d by java script,
and i don't knew how to rotate sphere around specific point using three.js library?
Any Help.. Thanks in advance!
0
votes
0answers
123 views
WebGL face rendering engine? [closed]
Not sure if this is in the correct place, but im wondering if anybody has heard of or come across a script that allows me to render the picture of somebodies face into a 3d model?
On my website I ...
11
votes
1answer
1k views
Proper way to detect WebGL support?
I am attempting to detect WebGL support across multiple browsers and I've encountered the following scenario. The current version of Firefox appears to report positive support using the following ...
1
vote
1answer
281 views
Rotating an object from object.matrix.setrotationfromeuler with custom animate function
first post here.. I didn't know how to search for this topic because I think its very esoteric. I'll post the code after my explanation.
I created a custom animation function that would do recursive ...
0
votes
1answer
153 views
Trying and failing to implement glulookat in webGL
Alright, so I have a block being drawn at 0,0,0 and I have this glulookat
function ugluLookAtf(eyex, eyey, eyez, centerx, centery, centerz, upx, upy, upz){
var forward = new Array(3);
...
2
votes
2answers
1k views
Reset camera position/rotation when using TrackballControls
I have a webgl application with threejs. It uses TrackballControls to control the camera. I have a button which I want to use to reset the scene, so, the camera should go to the initial state. I ...
1
vote
2answers
544 views
jQuery Tab Menu and WebGL
I want to use the tabs from jQuery UI (Source: http://jqueryui.com/demos/tabs/) to display on each tab a COLLADA dae file using WebGL GLGE (Source: http://www.glge.org/). The Tabs should be generated ...
0
votes
1answer
970 views
jQuery and WebGL - moving a div on a mouse move
So, what's the problem? I've got a div with "position:absolute" property. Now - I was wondering - can I move this div with jQuery (or simple javascript), each time when the mouse moves? And it's about ...
0
votes
2answers
984 views
Uncaught Error: SECURITY_ERR: DOM Exception 18 When applying textures with Three.js in WebGL
i am following this tutorial on getting started with webGL and three.js. My problem is when adding the line map: THREE.ImageUtils.loadTexture("images/particle.png"), Chrome raises Uncaught Error: ...
1
vote
1answer
1k views
How to turn data downloaded from JQuery.get, into ArrayBuffer?
I have attempted to find an answer to this for the past three days with various keywords I know of, but could not get far. I am new to JavaScript/WebGL so this could potentially turn out to be a ...
1
vote
2answers
325 views
Resize shapes on the fly
Is possible resize geometric shapes on the fly using JavaScript?
Example: I have a rectangle and two fields (length and height).
When user define some measure, resize it.
I thought OpenGL, WebGL, ...