Tagged Questions
1
vote
1answer
282 views
Transform Rectangle to trapezoid for perspective
I have picture from front-view. and I want to turn this into bird's eye view.
Now I want to calculate for each point in the rectangle (x,y) what will be transformed x,y in the trapezoid.
there must ...
3
votes
1answer
112 views
OpenGL Far Plane given very large value clips everything
I found if I define the far plane distance for the perspective matrix to be 1,000,000,000 , then all the object inside that range get clipped. Range of 100,000,000 works fine.
Anyone can explain this? ...
3
votes
2answers
385 views
Create QTransform given 4 points defining the transformed unit square
Given 4 points being be the result of
QPolygon poly = transform.mapToPolygon(QRectF(0, 0, 1, 1));
how can I find QTransform transform? (Even better: also given an arbitrary source rectangle)
...
1
vote
1answer
465 views
perspective correction, texture interpolation opengl
1) In opengl, in texture mapping, when you specify texture coordinates for two different vertices,for a point in between are texture coordinates interpolated, or/and are the rgb values at the ...
2
votes
0answers
198 views
Calculate Length in Perspective View [closed]
I have a 4-sided plane in a perspective view. Each side is equal in length to the side across from it. Given the length of two sides and the fore-shortened length of one side, how can we solve for the ...
0
votes
3answers
371 views
What's wrong with my glOrtho? Negative zero instead of zero
I'm implementing my own matrix math for an OpenGL application. So far, things are largely fine, although difficult. My most recent issue, one I've not had much luck on getting an explanation or a ...
0
votes
2answers
76 views
Changing rotational point
I am having an issue with my program; currently it rotates around a set point, and can rotate models around it. Of course, this is a problem as I want it to be a first-person perspective, and ...
13
votes
1answer
751 views
Calculate absolute dimensions of a div rotated in perspective with css3
lets say we have a div with 500x500px size and we rotate it on the x axis via css 45 degrees considering a webkit-perspective value of 1600px.
How would you calculate the absolute dimensions of the ...
0
votes
1answer
225 views
Determine the visual size of an object at a given distance from origin (using perspective)
Let's say we have a square, 50 pixels wide. And the -webkit-perspective is 1000px*.
What is the formula to determine how big the square will appear to be at a given distance from the viewer (the ...
1
vote
1answer
137 views
Ray trigonometry in Opengl
I am quite new to this, and iv'e heard that i need to get my inversed projection matrix and so on to create a ray from a 2D point to a 3D world point, however since im using OpenglES and there are not ...
1
vote
1answer
582 views
Calculating lat/long on sphere from X,Y coordinates?
I want to get the latitude and longitude on a 3D sphere, depending on Mouse X,Y.
Iv'e understood that i have to use trigonometry. The problem is that the sphere is put into a perspective, at least ...
1
vote
1answer
474 views
Depth interpolation for surface removal with perspective projection
This seems like a question for which an answer should readily available on the web or books but my quest for an answer has led me so far only to blind alleys that turned out to be dead ends.
I'm ...
2
votes
2answers
263 views
Practical method of putting circular shapes into perspective?
Not entirely sure if this should belong on Stack Overflow, but here goes.
I'm creating a simple version of tic-tac-toe in 3D using the HTML5 <canvas> object. The first player uses the cross ...
1
vote
2answers
1k views
I've got my 2D/3D conversion working perfectly, how to do perspective
Although the context of this question is about making a 2d/3d game, the problem i have boils down to some math.
Although its a 2.5D world, lets pretend its just 2d for this question.
// xa: x-accent, ...
3
votes
2answers
2k views
Calculating 2D angles for 3D objects in perspective
Imagine a photo, with the face of a building marked out.
Its given that the face of the building is a rectangle, with 90 degree corners. However, because its a photo, perspective will be involved ...
12
votes
2answers
5k views
Curvilinear perspective: Convert 3D to 2D
I'm looking for the mathematical expression converting a 3D coordinate (x0,y0,z0) to a 2D (x1,y1) coordinate in a curvilinear perspective of radius R where the values of x1 and y1 are the angles of ...