WebGL extends the capability of the HTML canvas element to allow it to render accelerated 3D graphics in any compatible web browser.

learn more… | top users | synonyms

0
votes
0answers
11 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
9 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 ...
0
votes
0answers
33 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 ...
2
votes
1answer
16 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
0answers
25 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 ...
-1
votes
1answer
25 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
1answer
28 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
1answer
12 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
28 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
32 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
28 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 ...
0
votes
0answers
25 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
28 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
33 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
1answer
22 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
51 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 ...
0
votes
1answer
20 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
1answer
36 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
2answers
37 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 ...
0
votes
1answer
41 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
33 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 ...
0
votes
0answers
28 views

Framebuffer size restriction

I am trying to do some post-processing effect, so I need framebuffers. The problem is, that maximum framebuffer I can create is 1024 x 512. Everything below that resolution, either for width or ...
0
votes
1answer
40 views

Cannot set lookAt position for camera with FirstPersonControls.js

// Init a perspective camera camera = new THREE.PerspectiveCamera(45, WIDTH / HEIGHT, 0.001, 10000); // Init free camera controls for default controls = new THREE.FirstPersonControls(camera); ...
0
votes
0answers
28 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
27 views

three.js trackballcontrol from local disk

The trackballcontrols demo at http://threejs.org/examples/misc_controls_trackball.html works great. But when I download it and the associated files and try to run it from local disk, it's blank. I ...
0
votes
1answer
46 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 ...
0
votes
1answer
41 views

Three.js image disappearing after a few calls to requestAnimationFrame()

I am trying to get some basic movement/refreshing working in Three.js. I've cut the problem back to the following code. A sphere displays fine first render, and twice (dictate by Nb), but the image ...
0
votes
0answers
41 views

Loading Flamingo.js model from three.js example morph normals into custom js file

I am a noob in three.js and webgl, so i was playing with example files inside three.js repo. what I was hoping to achieve is to port the code from one of the example of three.js - "Morph Normal ...
0
votes
1answer
23 views

Three.JS Assign material Color to object

Hi i want add a material/color to a loaded object but i dont know the exact syntax better said what vars and function should i add.if i take this line above then it shows the object but the line with ...
0
votes
1answer
25 views

Is it possible to create a visualization like this in WebGL?

This visualization is created using Away3D (Flash): www.guardian.co.uk/world/interactive/2011/mar/22/middle-east-protest-interactive-timeline Would it be possible to create something of the same ...
1
vote
1answer
90 views
+50

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
1answer
50 views

WebGL (Three.js) Skinning Animation Basic Concept

I came across many demos regarding skinning in Three.js however I cannot understand that does the model that we import, itself should be animating one like, it is already made animating in modeling ...
0
votes
1answer
38 views

how to read pixeldata efficiently with WebGL?

is there a faster method to read pixel data than getimagedata() ? I'm using THREE.js and so far in order to get the pixel's colors from an image and use them into my scene I have to read the pixel ...
0
votes
1answer
25 views

Use GeometryUtils.merge on several Line objects in THREE.js

I want to merge several thousands of Line objects into a single geometry with GeometryUtils.merge to reduce lag, but it doesn't seem to work on Line objects. Is it possible? My technical mind says you ...
0
votes
0answers
24 views

Which editor should I use for webGL

I am working with WebGl - javascript, and I wanted to ask you which editor should I use?? Is there any editor that shows me the errors or something like that? P.s Currently I am using Sublime Text... ...
0
votes
1answer
18 views

bufferData - usage parameter differences

While reading specification at Khronos, I found: bufferData(ulong target, Object data, ulong usage) 'usage' parameter can be: STREAM_DRAW, STATIC_DRAW or DYNAMIC_DRAW My question is, which one ...
0
votes
1answer
49 views

Three.js Mesh animation and texure mapping

I did some research and learn how to export the obj file to .js file that can be imported by JSON model of Three.js. but how can you animated such model ? I have a bird model in .js format i need to ...
0
votes
0answers
36 views

Three.js : lines importation?

Is there a solution to load lines/polylines described in a .obj, js or any other, and create LinePieces/LineStrip ? It seems that OBJLoader and JSONLoader ignore these objects, but they can be ...
0
votes
1answer
29 views

How to? Creating a webm video for three.js example webgl_kinect

According to this post(How to? Creating a webm video from kinect data for three.js example webgl_kinect), we need both webm and nfo files to run the example. I was about to modify and recreate the ...
0
votes
1answer
28 views

Multiple JS models with multiple materials

I need to load multiple models for map in my game... But when i'm loading all of them, my fps is going down=( But models are no huge, just only 3k poly for 1 model. function buildHouse(Bnum, x, y, z, ...
2
votes
2answers
50 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
23 views

WebGL: Switch between Shaders

i wrote a tiny function to switch between shaders, but unfortunatelly it doesn't work. I create the shaders and return them as shader objects. program = gl.createProgram(vs, fs, "VertexPosition", ...
0
votes
2answers
53 views

Recording FPS in webGL

I am trying to compare performance for 3d applications on mobile devices. I have a 3d solar system set up in webGL and im trying to record or at least display the FPS. So far this is what i Have: ...
0
votes
0answers
30 views

How do I create a color gradient toolbar that will allow the user to change the color of a Collada 3D Model?

Essentially, what I'm asking is: How do I create a color gradient toolbar that will allow the user to change the color of a Collada 3D Model? So that, when I select the object or structure, I can ...
1
vote
2answers
64 views

WebGL single frame “screenshot” of webGL

tried searching for something like this, but I've had no luck. I'm trying to open a new tab with a screenshot of the current state of my webgl image. Basically, it's a 3d model, with the ability to ...
0
votes
1answer
63 views

Three.js : JSONLoader + loadAjaxJSON

As I handle heavy models I'm trying to display dynamicaly the loaded percentage while loading JSON, so I've made a rough test with loadAjaxJSON method... The following loading returns the percentage ...
0
votes
1answer
16 views

How to embed a WebGL output in May Keynote?

I have some output in WebGL format, is there a way for me to embed this in a KeyNote or PowerPoint or LaTeX-Beamer presentation so that I change the orientation and zoom during a presentation.
0
votes
2answers
40 views

WebGL texture turns black in Safari on OSX

I am having an issue in Safari on OSX with WebGL enabled. I can load an image into a texture, however, whenever I attempt to redraw after some operation the texture turns black. This issue does not ...
0
votes
2answers
87 views

Fitting Or Warping Text (or an image) Into A Custom Envelope Outline Using HTML5 Canvas

Let's say that I use some HTML5 markup: <canvas id="e" width="400" height="200"></canvas> <script> var canvas = document.getElementById("e"); var context = ...
1
vote
1answer
59 views

Three.js + .OBJ loading : triangular faces only?

This will concerns only polygonals faces (object's faces with more than 4 edges).. In 3DSMAX there are 3 exporting modes for .OBJ : Triangles, Quads and Polygons. I've made many tests and get the ...

1 2 3 4 5 31