WebGL extends the capability of the HTML canvas element to allow it to render accelerated 3D graphics in any compatible web browser.
4
votes
0answers
126 views
Multiple transparent textures on the same mesh face in Three.js
Is it possible to lay multiple textures on top of each other on the same face in Three.js so that the alpha blending is done GPU accelerated in webGL?
The textures are (or should be) applied to the ...
4
votes
0answers
193 views
How to find orientation of rubik cube?
I'm trying to make a rubik cube game in webgl using three.js (you can try it here).
And I have problems to detect on witch axis I have to rotate my cube according the rotation of the cube. For ...
4
votes
0answers
975 views
Skeletal animation using parsed data from COLLADA file in Three.js
I have experimented with the example COLLADA parser colladaloader.js and imported a skeletal animated collada model "Seymour_anim2.dae" from ...
3
votes
0answers
63 views
Enabling WebGl without the Windows shell
I am trying to make my own Windows shell(don't ask) but the problem is: when I use Google Chrome while the native shell(Windows Explorer) is not running, Chrome doesn't display web pages properly ...
2
votes
0answers
55 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 {
...
2
votes
0answers
82 views
three.js ray intersection r58
i want to detect intersection using ray in collada object, three.js r58 but
var intersects = target.intersectObjects(ai);
not working for me any one solve ...
2
votes
0answers
90 views
loading multiple collada objects at the same time Three.js
i have to load the same collada object multiple times.
Here is the code
var ai = [];
function setupAI() {
var c = getMapSector(cam.position);
var loader ...
2
votes
0answers
49 views
Changing cameras quaternion does not update camera
I'm doing an interactive earth globe using Three.js.
I need the camera to animate and point to certain pin, when the pin is clicked.
Now I'm updating the cameras quaternion on every new drawn frame, ...
2
votes
0answers
83 views
Trying to aim the particals to camera while rotating and alert message on intersecting in three js?
Trying to create event handler on the particals with alert message on sphere and also these should aim always on camera something similar to
http://www.google.com/culturalinstitute/worldwonders/ ( ...
2
votes
0answers
103 views
particlesystem issue in newer versions
Edit 2:
It seems they are rendered somehow, but from a version to another their dimension, and scale differ. I managed somehow to see them in three52, moving the camere very close to 0,0,0 and they ...
2
votes
0answers
284 views
Collada loader restriction in Three.js
In Three.js, the Collada Loader can't load model with more than about 65000 vertices, I know it is because of a limitation of WebGL, but maybe it is possible to divide the model into different buffers ...
1
vote
0answers
28 views
Fullscreen mode for a WebGL application on Chrome Mobile
I have a WebGL application. I would like it to go to fullscreen mode when ran on Chrome Mobile. Is this possible and if so, how? I searched around the internet and all I could come up with was this ...
1
vote
0answers
73 views
WebGL Weird Performance Drop in Chrome
I have been trying to learn WebGL so I have made a simple model loading script. I thought it was working all fine and dandy until I pulled up Chrome's devtools timeline and saw that I was getting ~20 ...
1
vote
0answers
51 views
Can't parse webgl object to my object
I'm trying to make an object in javascript to contain a 3dObject and everyting related to it:vertex positions, normals, texture coordonates etc + the methods needed to handle it: loading the object, ...
1
vote
0answers
191 views
AngularJS Binding to WebGL / Canvas
I'm very green to AngularJS. I'm wondering if it's possible to use it when your view is using HTML5 Canvas or WebGL? If so, are there any good tutorials on how you go about this?
I've seen several ...
1
vote
0answers
53 views
How do I create an object boundary in Three.js / WebGL?
I'm new to graphics and was wondering how I would go about creating an object boundary for my game.
Right now I have an object following my mouse. This works fine for my boundary when my ship has a ...
1
vote
0answers
103 views
Outer Glow around 2D object using three.js
I have a screen full of tiled/stacked triangular pieces of 2D "paper" using three.js. The objects are added at random positions/intervals and are positioned very close to each other on the z-axis so ...
1
vote
0answers
23 views
Texture and Lines not blending in WebGL
I'm supposed to be having a 2d program using webgl and supposed to have a picture over the canvas which is a texture and above it i draw lines using webgl also. But the thing is both have different ...
1
vote
0answers
99 views
3D heatmap / gradient using three.js
I have just started an experiment with modelling a building and visualising it in a web browser using WebGL, aided by three.js. What I would like to achieve is a 3D visualisation of a field like ...
1
vote
0answers
31 views
ThreeJS. How to implement ZoomALL and make sure a given box fills the canvas area?
I am looking for a function to ensure that a given box or sphere will be visible in a WebGL canvas, and that it will fit the canvas area.
I am using a perspective camera and the camera already points ...
1
vote
0answers
79 views
Is environment mapping broken for the normalMap shader in three.js r57?
I'm trying to create some very simple water by animating the uv's of a normal on a plane. Adding environment map reflections would enhance the effect but as I was setting it up, I noticed that the ...
1
vote
0answers
86 views
WebGl solar system
<input type="button" value="Mercury" class="btn" onClick = "showInfo(1)"/>
<div id="1" style="left:70%;top:300px;width:300px;position:absolute;z-index:100;display:none;">
Mercury - my ...
1
vote
0answers
46 views
WebGL/GLSL ES strange behaviour when changed useless (?) part of the code
I am writing some shader lighting computations for my WebGL application. WebGL uses GLSL ES.
This is my Phong BRDF :
float cosTheta = dot(L, N);
vec3 R = reflect(L, N);
if(cosTheta > 0.0) {
...
1
vote
0answers
258 views
Three.js - Uncaught TypeError: undefined is not a function
I'm getting the Uncaught TypeError: undefined is not a function while using Three.js.
The error is being shown for the line where I'm creating a THREE.PerspectiveCamera.
The script is
...
1
vote
0answers
206 views
three.js dds compressed textures uv map issue
I'm trying to get dds textures to work with three.js. I have a model in json (converted from .obj + .mtl using three.js converter) using baked textures in jpg/png format. I've created a dds texture ...
1
vote
0answers
120 views
Object Overflow Clipping Three JS
Using three js is there anyway to define a clipping region for an object? I have for example a parent which contains child objects, I would like to clip the child objects based on the viewport.
...
1
vote
0answers
107 views
Resample image with WebGL
User may upload images via drag'n'drop or select in dialog window. These files may be huge (dimensions and size), so before upload I want to resize with WebGL.
Shaders code was taken from this ...
1
vote
0answers
32 views
Auto enable WebGL when visiting a page that uses it?
is there a way to automatically enable webgl in browser if website uses it?
I know that you need to enable it manually in Safari, and there is a plugin for IE.
1
vote
0answers
156 views
Sprite not showing renderToTexture Map / rendertarget map
I am working with three.js and I set up a second scene and camera and added a cylinder to it. Now I setup a rendertarget and I wanted to show this renderedScene on a sprite (HUD-Sprite so to say), but ...
1
vote
0answers
238 views
webgl glsl emulate texture3d
I'm porting a piece of opengl to webgl and i'm trying to emulate texture3d. Somehow something is going wrong.
No interpolation is needed because it is only used for calculations. I'm not sure about ...
1
vote
0answers
235 views
How to access child objects from parent object in Three.js?
I've used mesh to add objects and thereafter I added mesh to the scene. Now I want to access the objects from mesh so that I could perform rotating the objects and its children in corresponding their ...
1
vote
0answers
76 views
How to handle multiple collada scenes?
I want to handle multiple collada files with Three.js in following way:
Load and display "01.dae". After a while destroy this scene.
After "01.dae" has been destroyed successfully, load and display ...
1
vote
0answers
290 views
Rendering very large model of Blender in Three.js
I have a very big Blender model (the json about 70 Mb). Can Three.js normally render such model? Load model with the following code:
loader = new THREE.JSONLoader();
callbackDice = ...
1
vote
0answers
87 views
gl_PointCoord in OSX 10.7 Lion
I've come against a really bizarre shader error in many of the particle examples for Three.js. In the latest Chrome and Firefox in OSX 10.7, gl_PointCoord returns (1,0) for every single fragment. This ...
1
vote
0answers
141 views
ray intersect not working in sphere
created the sphere and the plane geometry when i ignore the sphere form scene.add()
interesect work but
here is the code..
http://jsfiddle.net/praveenv29/PZeY4/
for ( var i = 0; i<10; i ++ )
...
1
vote
0answers
143 views
WebGL setting different textures
I'm working on an existing project in WebGL and there is something wrong with the textures, i'm having some trouble setting the right texture to the right object, on the khronos.org forum I have some ...
1
vote
0answers
130 views
How to send/receive original binary Image Data from/to Canvas via WebSockets
I like to get the binary data from an image. Therefore I need to put it on canvas and retrieve it with the getImageDate method. However, when I compare the size of the source PNG-image with the size ...
1
vote
0answers
43 views
Webgl with FireFox gives an invalid arguments error
For some reason this line gives an invalid arguments error with FireFox however it works perfectly fine with Chrome.
gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertices0), gl.STATIC_DRAW);
...
1
vote
0answers
173 views
Chromadepth3D shader in three.js
What do i have to change in these two vertexshader/fragmentshader to make it work in three.js? Or is it possible to change 'MeshDepthMaterial' to display the chromadepth color scheme?
**The vertex ...
1
vote
0answers
155 views
three.js custom attributes
I'm trying to make a real-time in-browser shader writing tool and I have a problem with custom attributes. You can see what we've got here: 78.46.211.78/index.html
The vertex shader and fragment ...
1
vote
0answers
84 views
Using common codebase between Google Chrome and v8 embedded in C++ app
I'm working on a WebGL scene graph library as a hobby project. I now want run my code in v8 embedded in a C++ app, exposing OpenGL 4.3 to the JavaScript code.
I'm using require.js in my WebGL code ...
1
vote
0answers
437 views
three.js - move camera inside tube geometry
In a 3d scene tube geometry is built by loading 200 points as JSON data from external javascript file. Below is the complete code:
<!DOCTYPE html>
<html lang="en">
...
1
vote
0answers
474 views
ray intersect object, picking object with mouse-pointer
Thank you for your consideration, as my problem is in title already I will get directly to the point:
UPDATE 2:
Problem solved. I did not transformed them into meshes, or so it seems. With the ...
1
vote
0answers
112 views
Efficient way of storing and loading 3d model in/from database
I am looking at storing 3d models with millions of vertices in a database and providing a 3d view to those via a webgl interface. Before I start doing this, I was wondering whether there are already ...
1
vote
0answers
30 views
Adding touch capabilities to rotation
I am trying to add compatability for touch devices in the rotation of the 3d plot which uses webgl-surface-plot, but I cant get the most basic test to work. here is a link to the page. I have, for ...
1
vote
0answers
171 views
using three.js can I place a viewport in a scene between near field and far field
I am unsure if what I am trying to achieve is possible using three.js
What I aim to do is place the viewport within the frustum.
I want to create a 3d environment in which objects can appear between ...
1
vote
0answers
88 views
Collada camera movement in three.js - is it possible?
Is it possible to use exported collada camera movement in a three.js scene?
In other words: can three.js handle collada camera movement?
Thank you!
1
vote
0answers
181 views
Which parameters are responsible for the location of the camera and its angle?
I try to connect picture that rendering on server, with bounding box that rendering at web-client.
I use the polar system on web-client and so when angel phi more than 90, camera.Up became from ...
1
vote
0answers
136 views
Punching alpha fillled holes to render-to-textures in Three.js
I am using render-to-texture to do postprocessing and then blending several 2D layers together.
Currently I am using stencil mask to make "holes" in render-to-texture targets and leaving some of the ...
1
vote
0answers
207 views
EffectComposer and alpha channel with three.js
Here is my code :
renderTargetParametersRGBA = {
minFilter: THREE.LinearFilter, magFilter: THREE.LinearFilter,
format: THREE.RGBAFormat,stencilBuffer: true
};
colorTarget = new ...