Tagged Questions
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, ...
0
votes
1answer
84 views
How do I include gl-matrix?
What I did:
Downloaded master branch from here: https://github.com/toji/gl-matrix
Put src folder into my project's folder.
Included gl-matrix-manifest.js from there.
Tried this:
var mvMatrix = ...
1
vote
3answers
164 views
Moving a object based on its rotation in three.js
I'm trying to move a cube in three.js based on its rotation but not sure on how to go about it.
As of now I can rotate the cube's z-rotation with the A & D keys. And with the W key I would like ...
1
vote
1answer
116 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 ...
0
votes
1answer
117 views
rotate a globe with the mouse
I can determine where on a globe the user has clicked.
When the user first clicks the mouse button down, I can store where they have clicked; lets call it the pin.
Then, as they drag the mouse ...
1
vote
0answers
47 views
Rotation of a shape loaded with ObjLoader [duplicate]
Possible Duplicate:
Rotating a custom geometry mesh around its center point
JSFiddle of this code is here...
I have a geometry loaded with ObjLoader in to the scene with theese vertices (A ...
1
vote
1answer
128 views
How to calculate camera view angle (per Fragment in Fragment-Shader) (WebGL / OpenGL)
i've given all three matrices (Model, View, Projection) in Fragment Shader. Now i like to calculate the view angle per fragment. camera has a perspective of e.g. 45°. how can i do it? with this i like ...
38
votes
4answers
1k views
Optimising the drawing of overlapping rectangles
I have a large number of rectangles, and some overlap others; each rectangle has an absolute z-order and a colour. (Each 'rectangle' is actually the axis-aligned bounding box of a particle effect, ...
0
votes
1answer
180 views
Get longitude and latitude from the Globe in WebGL
I'm using WebGL globe from http://workshop.chromeexperiments.com/globe/. If any point of the globe is clicked, I need to get the longitude and latitude of that point. These parameters are to be passed ...
2
votes
1answer
227 views
rotating a sphere a to b point on itself
Im trying to figure out how to rotate a sphere from point A on itself to point b on itself. I found some Unity3d code:
Quaternion rot = Quaternion.FromToRotation (pointA, pointB);
...
2
votes
1answer
548 views
Create 3rd person camera position calculation with quaternions
I want to create a 3rd person camera similiar to example. The camera should stick behind the object and rotate if the rotation difference between camera and object is too high (maybe above ten ...
0
votes
1answer
145 views
Trying and failing to implement glulookat in webGL
Alright, so I have a block being drawn at 0,0,0 and I have this glulookat
function ugluLookAtf(eyex, eyey, eyez, centerx, centery, centerz, upx, upy, upz){
var forward = new Array(3);
...
2
votes
2answers
802 views
Can anyone explain what this GLSL fragment shader is doing?
I realise this is a math-centric question but... if you look at this webpage (and have a good graphics card) http://mrdoob.github.com/three.js/examples/webgl_shader.html
If you look at the source, ...
2
votes
1answer
308 views
vec3.unproject() mouse collision problems
var fNearZ = -100.0;
var farZ = 100.0;
var fZoom = 10.0;
var iR = this.iWidth/fZoom;
var iL = (this.iWidth/fZoom)*(-1);
var iT = this.iHeight/fZoom;
var iB = ...
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 ...
0
votes
2answers
480 views
WebGL - Rotating object in the direction it is travelling
In this example: http://deeplogic.info/project/webGL/
How can I rotate the object in the direction in which it is travelling?
1
vote
1answer
275 views
javascript matrix exponential, ala cv::Rodrigues( )?
Does anyone know of an existing code that does matrix exponential in javascript ?
Or, if not, what are "best practices" for writing something like that? I am used to C++ & Matlab, just trying my ...
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 ...