WebGL extends the capability of the HTML canvas element to allow it to render accelerated 3D graphics in any compatible web browser.
1
vote
2answers
88 views
+50
How to add shader to THREE.Object3D loaded from OBJMTLLoader
I have a model loaded using THREE.OBJMTLLoader.
var loader = new THREE.OBJMTLLoader();
loader.addEventListener('load', function(event) {
var mesh = event.content;
scene.add(mesh);
});
...
1
vote
1answer
2k views
Change vertex buffer dynamically in WebGL
I'm developing a cloth simulator in WebGL, got all the physics and the animation ready but I just can't render it. I am used to use glVertex in Opengl, so in every iteration I can change the position ...
0
votes
0answers
6 views
Three.js: Load JSON file to be viewed in
i have a question regarding putting a 3dModel from Blender to a Three.js page.
I have created a 3D Human model in blender. I can export it using the 2.66 three.js-export plugin for blender.
When I ...
0
votes
0answers
15 views
Three.js 3D arc with varying height
I've had a decent amount of experience with WebGL, but I'm now just learning Three.js. I have a unique 3d shape I need to make in Three.js akin to a 3d arc. The bottom surface of the arc should be ...
7
votes
1answer
312 views
Canvas Image resize / scew / dnd
I'm trying to build a application where people can upload images and I want to make it possible that people can drag the corners of the image and distort it. But I have no clue where to start and I ...
25
votes
2answers
14k views
Using textures in THREE.js
I am starting with THREE.js, and I am trying to draw a rectangle with a texture on it, lit by a single source of light. I think this is as simple as it gets (HTML omitted for brevity):
function ...
0
votes
1answer
22 views
Restart game in THREE.js after Pausing
I am making a game. I Pause the game by this code in THREE.js
if (keyboard.pressed("E")) {
animate = false;
}
if(animate){
requestAnimationFrame(animate);
}
I want to restart the game after ...
0
votes
1answer
19 views
Adding the same model to the scene more than once in THREE.js?
How is it possible to add the same dae model to a scene more than once?
//loading collada model
var soldiers = [];
var loader = new THREE.ColladaLoader();
loader.options.convertUpAxis = true;
...
2
votes
2answers
583 views
Thickness of lines using THREE.LineBasicMaterial
I am using the code below to create hundreds of lines in my three.js scene
edgeGeometry[i] = new THREE.Geometry();
edgeGeometry[i].vertices[0] = v(x1,y1,z1);
edgeGeometry[i].vertices[1] = ...
0
votes
1answer
18 views
How to tell Three.js not to use interpolation when zooming an object's texture?
It is a plane with a sprite art as texture so I'd like it zoomed using no interpolation method.
0
votes
2answers
31 views
threejs rotation by x and z works individually but fails together
I need to rotate the diamonds (see attachement) around the x and z axis. When rotating individually (meaning I only set rotation.x or rotation.z) the rotation looks fine and it works. But when I set ...
0
votes
0answers
20 views
Particle System in THREE.js
I am making particle System in THREE.js by using SPARK.js, but the problem is that I am done with the code that is needed for the particle System but I am unable to see any thing on the screen related ...
0
votes
1answer
19 views
Can't clone() Texture
Basicly,
this works:
var expl1 = new THREE.ImageUtils.loadTexture( 'images/explodes/expl1.png' );
this.material = new THREE.MeshBasicMaterial({ map: expl1, transparent:true, ...
1
vote
1answer
37 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 ...
5
votes
1answer
126 views
webgl projection mapping / quad warping / corner pin
I want to map a rectangular texture to a quad with corners in arbitrary positions corresponding to screen pixels. Something like drawQuad( x1,y1, x2,y2, x3,y3, x4,y4 ). Are there any demos of doing ...
0
votes
2answers
17 views
WebGl only gives a black box
I have been trying to teach myself WebGL from LearningWebGL.com. Previously when I have created a web page with WebGL on it & saved it to my hard drive I could open it & see the result in ...
0
votes
1answer
24 views
How to split a group in three.js?
I have some voxels that I need to have grouped, so I place them in a container:
container.add(e);
and then add the container to the scene.
Is there a way now to split voxels again without creating ...
0
votes
2answers
421 views
three.js - zoom in/out complete tube geometry
I've created a tube geometry with data of 200 points loaded from external javascript file in JSON format. Please find the below code.
<!DOCTYPE html>
<html lang="en">
<head>
...
0
votes
1answer
62 views
Why is WebGL render speed so inconsistent?
In my application I plot about 8 million vertices with a single call to WebGL's drawarrays using the LINE_STRIP flag. I don't actually want one long line, I want about 200k short lines, so I cap all ...
0
votes
1answer
37 views
Translating threejs animation from WebGL to Canvas
I am trying to make this threejs example (currently using WebGLRenderer) work with the CanvasRenderer:
http://threejs.org/examples/webgl_shadowmap.html
Here is my result:
...
0
votes
1answer
15 views
Creating a world map scene with cubes in 3D? (WebGL, Three.js, Canvas)
I would like to create a world map in 3D perspective like this, including the shadow:
http://www.google.com/zeitgeist/2012/#explore
(Please wait 3 seconds for it to animate to its position)
On top ...
0
votes
0answers
10 views
WebGL: Display Depth Texture
I'm new to WebGL and trying to implement depth textures for later usage in Shadow Maps.
Below is my code of the initilisation of the framebuffer.
In the function drawTest I first bind all Buffers ...
0
votes
1answer
43 views
UV calculation on custom 3d mesh
After making some research, i didn't find yet any formula that will offer me a way to push faceVertexUvs on my custom mesh (basically countries on top of a sphere), I need to burn world texture on ...
0
votes
0answers
13 views
Flickering scene issue with ray
I am trying to follow 'misc_controls_pointerlock' example. Everything works fine. But, instead of the cubes, I load a 17-floor building and the issue occur. I think .I exported the building to JSON ...
0
votes
1answer
33 views
How to texture animated js model exported from blender ? [Three.js]
I have successfully animated a model in blender using bone animation technique and i have also textured it in blender using uv texturing. Then Using three.js export add-on in blender i have exported ...
0
votes
0answers
22 views
three.js - how to replace a mesh geometry w/o recreating the mesh
I'm loading several STL files (one by one) into the same scene. Those files are different LODs of the same model (from low-poly to high-poly). I'd like to simulate a continuous model update from low ...
0
votes
0answers
12 views
enable webGL automatically?
I am using glfx.js jquery plugin for adjusting image's hue/saturation but most of the browser not supporting WebGL
is there a way to automatically enable webgl in browser if website uses it?
I know ...
-1
votes
0answers
31 views
Keyboard Controlling Animated model of Three.js [closed]
The Morph Normal Example present in Three.js example folder has one example where a model named "Flamingo.js" is being animated, what I want to do is keyboard control the model. This example already ...
2
votes
1answer
25 views
What does “PERFORMANCE WARNING: Some textures are unrenderable” mean in Chrome?
In my WebGL, in the JavaScript console, I see the warning
PERFORMANCE WARNING: Some textures are unrenderable.
What does it mean?
-1
votes
1answer
35 views
How to set scene made with Three Js editor? [closed]
I used Three Js editor to make simple scene with mesh, It return to me the scene code below :
http://codepen.io/anon/pen/oIbEl
I would know how to insert it in my Js code?
Thanks for answer !
0
votes
0answers
32 views
webgl shadow mapping gl.DEPTH_COMPONENT
Hey im trying to implement shadow mapping in webgl using this example:
tutorial
What im trying to do is
initialize the depth texture and framebuffer.
draw a scene to that framebuffer with a simple ...
0
votes
1answer
31 views
Half-edge data structure in Javascript?
I implemented half-edge data structure in C++ to generate topological connectivity of 3D objects from a soup of polygons. Its implementation needs features such as pointers, forward declarations etc.
...
1
vote
3answers
37 views
how to cache STL geometry outside of STLLoader even listener
I'm trying read and cache a geometry from STL file with Three.js STLLoader. I'm using event loop callback to get the data (similar to STLLoader example). I intend to store in in external variable ...
0
votes
1answer
37 views
Webgl GLSL / Open GL ES 2.0
I'm curently porting an engine written for android and IOS devices using OpenGLES 2.0 to webgl and I stumbled uppon a problem using shaders. Most of the shaders written for the mobile app doesn't work ...
12
votes
8answers
4k views
Does JavaScript provide a high resolution timer?
Does JavaScript provide a high resolution timer?
I've written a few game engines from scratch, some in C, some in Java, and some in Flash. I always follow the same basic model when it comes to ...
1
vote
0answers
83 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 ...
0
votes
1answer
200 views
updating webgl-surface-plot based on user input
I am trying to use webgl-surface-plot to plot in 3D. the issue is, i want to take in user inputs for the parameters of my function using sliders or text boxes. for some reason though, I cannot get it ...
0
votes
1answer
38 views
Build phong shader from THREE.ShaderLib
I'm trying to build the phong shader from THREE.ShaderLib.
This is what I got:
var phongShader = THREE.ShaderLib.phong;
var uniforms = THREE.UniformsUtils.clone(phongShader.uniforms);
material = new ...
0
votes
0answers
29 views
Three.js with IEWebGL — Working?
I don't see three.js working with IEWebGL right now for my project (http://zoatron.com). It throws the "your-browser-doesn't-have-WebGL" error. Should it work?
I've reviewed several discussions ...
0
votes
0answers
37 views
Flame is not showing in THREE.js World
I am making a flame using the THREE.js and spark.js, but when I render the world I can't see the flame and the world is empty. I saw the console for the error but there is no error regarding this. I ...
0
votes
1answer
50 views
Loading Multiple Collada Objects in THREE.js
I am loading multiple car models using a loop in THREE.js, but the problem is that sometime it loads all the objects but some time it does not load all the objects. For example if the loop is of 3 ...
0
votes
1answer
25 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( ...
14
votes
4answers
7k views
SceneJS vs Three.JS vs others
Pros and cons anyone? Couldn’t find a complete feature set for three.js library. Though I do know it’s popular and in active development. Maybe someone have done some R&D on WebGL engines and can ...
0
votes
1answer
57 views
How to export an object from 3d max studio for use it in THree.js
I have a problem with loading an object that I have created in 3d studio max!
I export it like an .obj (and it gives me two files, .obj and .mtl). I have used OBJMTLLOADET() didn't worked, I used ...
2
votes
3answers
967 views
How to Export SolidWorks file to use in WebGL?
Is there a way to export or convert a SolidWorks file to be used in any way for WebGL?
0
votes
1answer
24 views
naming a multiple collada objects differing from another
we are currently able to load multiple collada files using the code below, we want to know how we will be able to name the collada files differently.
Here are some of the functions that we used:
...
0
votes
2answers
42 views
Reading current framebuffer
Is there a way to read fragment from the framebuffer currently rendered?
So, I'm looking for a way to read color information from the fragment that's on the place that current fragment will probably ...
2
votes
2answers
51 views
How to view the shadowmap
I would like to be able to view the generated shadow maps from all the scene light sources (spot-light or directional-light) on a separate canvas element.
Is there a way to achieve this with ...
0
votes
1answer
49 views
How to cut an object using WebGL shaders?
I would like to cut an object (a box) in WebGL (fragment shaders / vertex shaders) without using Boolean operations (union, difference, etc..).
I want to use shaders to hide some part of the object ...
1
vote
0answers
48 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 ...



