Tagged Questions
0
votes
2answers
36 views
Mesh on the other side of light source looks strange
i'm programming in WebGL (using OpenGL shaders) simple model loader. I've implemented phong shading in fragment shader. However when i load larger objects than simple monkey/cube and turn camera out ...
1
vote
0answers
55 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
1answer
120 views
WebGL: how to prevent camera bounce when changing center of rotation
I've hit a mental block of sorts, and was looking for some advice or suggestions. My problem is this:
I have a WebGL scene (I'm not using a 3rd party library, except gl-matrix), in which the user ...
6
votes
1answer
84 views
draw a texture pixelated
I have a bitmap that I want to draw zoomed in and with straight, defined edges between pixels.
I have tried setting the MAG filter to NEAREST:
gl.bindTexture(gl.TEXTURE_2D,this.tex);
...
0
votes
2answers
538 views
Enabling WebGL support for Android WebView
I need to display WebGL graphics in my webview. Is there any way to modify Android WebView to enable WebGL. If yes, How?
0
votes
4answers
157 views
What graphics card to I need to use WebGL
Maybe there is a combo hardware & WebGl guru out there that can help me out.
I want to experiement with WebGL, I updated my Chrome Browser to the latest,
which seems to support most of the new ...
2
votes
1answer
106 views
Three.js Scene Violently Shaking
I am currently working on a project that involves working with very large and very small distances using three.js
I am having an issue on the smaller side of the scene, where the 'scene' will start ...
0
votes
1answer
182 views
In WebGL, how can I load a 3D model (wavefront) that uses multiple textures?
As of now, my code supports loading an .obj (wavefront) file and translating it into a WebGL object (GL buffers and a render function). However, I can only map one texture to the entire object right ...
2
votes
1answer
126 views
How to decide if a fragment's color is white or not?
I have many circles next to each other in my scene (white circles and circles with different colors). I would like to blur the white circles only. (White means (1,1,1) in my case.)
My question is: ...
5
votes
2answers
188 views
Index buffers in WebGL?
I am trying to learn some WebGL (from this tutorial http://learningwebgl.com/blog/?page_id=1217). I followed the guide, and now I am trying to implement my own demo. I want to create a graphics object ...
-1
votes
2answers
73 views
Error splitting text by newline
This is relevant portion of my code:
ajax({
url: "TeaPot.obj",
success: function(data) {
var Script = data.split("\n");
for (var I in Script) {
var Line = Script[I];
...
0
votes
1answer
83 views
Load a file using JavaScript
I'm trying to load myself a file into my .js file, but I can't seem to find any code that explains it well enough. At the moment I have some code that will draw a flat triangle using webGL. Now I want ...
1
vote
1answer
35 views
webGL ignore back facing?
I have got myself a nice shape using webGL, but when i use the line strip option, I'm also get triangles from the back, how can I just not draw back face? the shape is really hard to understand when ...
0
votes
0answers
106 views
Butterfly Subdivision
I'm working on a JS + WebGL application that just renders a cube using a "face, edge, vertex structure", the cube has 8 vertices, the cube has 18 edges and it has a total of 12 faces, the cube is made ...
1
vote
4answers
743 views
WebGL is 2D API not 3D API
WebGL is actually a 2D API, not a 3D API. What does it mean?
We can specify x,y,z co-ordinates in webGL vertex shader and fragement shader. I couldn't understand difference between 2D and 3D ...
0
votes
1answer
112 views
How can I get my mesh has gone off screen?
I cannot figure out how to detect it going off screen, can anybody help? I am using WebGL and Three.js.
0
votes
1answer
802 views
Three.JS, changing the world position of a child 3D object
So basically I have a child object3D of a group Object3D, while the child object's [x,y,z] coordinates are shown relative to the object space of the parent object, I want to change the location of the ...
0
votes
2answers
176 views
using WebGL instead of desktop OpenGL
I have to make a basic Computer Graphics Assignment in which I have to display a basic model on the screen and give the user controls to move the position/orientation of the components of the model. I ...
0
votes
1answer
274 views
WebGL color mix calculation
What is WebGL color mix calculation algorithm? I need to draw quadrangle with 4-way gradient color fill and I decided to do it with 3-way gradient triangles (like this), calculating the center of ...
4
votes
5answers
763 views
webgl: white border when using transparency (alpha)
When rendering textures that have an alpha-channel, a white border appears around the non-transparent part (the border seems to be the pixels that have an alpha > 0 and < 1):
The original ...
2
votes
2answers
547 views
WebGL / Box2D drawing issue: gap between bodies
I'm still a graphics programming novice and bet the following problem is just a matter of wrong configuration.
i am creating a game using webgl for graphics and box2dweb for physics. unfortunately ...
8
votes
4answers
2k views
OpenGl and WebGL
It's a very simple question to learn webGL programming, do I need firstly to learn openGL programming?
any references may help me to start learning webGL?
0
votes
1answer
236 views
Problems applying directional light using normals in a webgl scene
Okay,
So I have been all over the net trying to find ways to correctly render using normals, and directional light (origonally found in one of learningwebgl.com tutorials). In the learningwebgl ...
2
votes
2answers
341 views
Proper transformation setup for scale and then rotation
My matrix math is a bit rusty, so I'm having some trouble figuring out the proper transformation process that I need to apply here.
I have a full-screen quad with coordinates ranging from [-1, 1] in ...
3
votes
3answers
245 views
Which graphics API for browsers should I learn?
Which 3D graphics API for browsers should I learn? I hear there's WebGL for Firefox 4, O3D for Chrome, and Shockwave has been around for a decade for all browsers. There may be others, but I'm not ...
6
votes
3answers
3k views
Most efficient way to draw multiple identical objects?
I would like to make a game out of many cubes and am planning on putting it on mobile platforms and also on the web using webgl. My problem is when I make a drawelements call per cube I take a hit on ...

