0
votes
1answer
68 views

How to manage the perspective transformation?

How to convert (x,y,z) coordinates from inside the perspective pyramid, to (x',y',z') coordinates inside the perspective cube? (in a right hand coordinate system) I tried to multiply this perspective ...
1
vote
2answers
247 views

How perspective matrix works?

I started to read lesson 1 in learningwebgl blog, and I noticed this part: var pMatrix = mat4.create(); mat4.perspective(45, gl.viewportWidth / gl.viewportHeight, 0.1, 100.0, pMatrix); I roughly ...
5
votes
1answer
205 views

Three.js - what do the matrices in a 3D object represent

Looking at the source of THREE.Object3D, there are three properties: matrix, matrixWorld and matrixRotationWorld. I see that the object's position, scale and rotation can be extracted from matrix. I ...
2
votes
1answer
284 views

Placing camera W.R.T 3d object in three.js

I have an object that moves and rotates, and I want the camera to stay a certain distance behind it. To be clear, I'm drawing an airplane and want the camera to always be looking at its rear. (Unless ...
0
votes
1answer
149 views

Can someone explain the mat4.translate function from glMatrix?

Does anyone know why glmatrix ( 1.x ) defines mat4.translate like this: /** * Translates a matrix by the given vector * * @param {mat4} mat mat4 to translate * @param {vec3} vec vec3 specifying ...
4
votes
0answers
201 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 ...
0
votes
2answers
77 views

Do WebGL fragment shaders support outerProduct?

When compiling this WebGL fragment shader in both Chrome 22 and Firefox 15: precision mediump float; uniform vec2 u_resolution; uniform sampler2D u_tex; void main() { vec2 texCoord = ...
0
votes
1answer
46 views

WebGL matrix depth not working properly

I'm very new to WebGL, but I'm getting close at understanding the basics. I'm following the instructions in Jacob Seidelin's book where he explains some of the basics. I tried rebuilding one of his ...
2
votes
1answer
99 views

How to compute a Normals Matrix?

I have the classic simple lighting example: precision mediump float; varying vec3 lighting; attribute vec3 vertex; attribute vec3 normal; uniform mat4 mvMatrix, pMatrix, nMatrix; void main() { ...
1
vote
1answer
130 views

Why does my rotation go awry when I change the scale of a Three.js mesh?

I wanted to rotate a sphere around the world x and y axes. I successfully accomplished that with this code: // Update ball rotation. var tempMat = new THREE.Matrix4(); tempMat.makeRotationAxis(new ...
0
votes
2answers
163 views

OpenGL vector projection inaccurate

I'm creating the perspective projection like this: function quickViewMatrix( pos, center, w, h ) { var modelview = mat4.create(); mat4.lookAt( pos, center, [ 0, 0, 1 ], modelview ); var ...
0
votes
1answer
207 views

gluProject equivalent in Javascript

I'm looking for an equivalent of gluProject in javascript for use with WebGL. Does anyone know where an open-source implementation is or how to implement it in javascript? I'm using the glMatrix ...
1
vote
1answer
397 views

Cameras and Modelview in OpenGL ES (WebGL)

I'm having a little trouble with my OpenGL transformations -- I have a vertex shader that sets gl_Position to projection * view * model * vertex. I have code that generates a view matrix by inverting ...
2
votes
2answers
340 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
2answers
3k views

How can I rotate around a scene in webgl on mousedrag (emulating a camera moving around a position)

Okay, So I have been reading for the past few hours and I have managed to get the mouse drag to work on the x axis using the following matrix computation, but no luck with the y axis: where newX = ...
13
votes
3answers
2k views

Using WebGL Shader Language (GLSL) for arbitrary vector mathematics in JavaScript

The WebGL Shader Language (GLSL) is a very powerful tool for multidimensional vector mathematics. Is there any possibility to use that power from JavaScript (running in web browser) for private ...