1
vote
1answer
311 views

Buggy UV coordinates of sphere in OpenGL?

I am having buggy texture map on my sphere. The issue is well known but solution is rare. This is my code for generating UVs for a sphere. T = trinagles, Nv = vertex normals. for (int i=0; ...
4
votes
4answers
513 views

spherical coordinates distance to plane

Background Info Consider a spherical coordinate system like the one shown here: For a particular point, we specify its location by (r, theta, phi). A plane can be described in this coordinate ...
0
votes
2answers
2k views

Calculate the XYZ point of a sphere, given a UV coordinate of its texture

I have a sphere in 3D. At runtime i'm generating a dynamic 2048x1024 texture for it. On this texture a tiny circle is drawn, which could be anywhere. I have the x/y of this circle on the texture, ...
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 ...
8
votes
7answers
6k views

3D coordinates on a sphere to Latitude and Longitude

I've got the following information: There exists a sphere with origin (0,0,0) and radius R. After doing a ray-sphere intersection I know a point (XYZ) in 3D space that is on the sphere (the exact ...
1
vote
1answer
1k views

DirectX Sphere Texture Coordinates

I have a sphere with per-vertex normals and I'm trying to derive the texture coordinates for the object using the algorithm: U = Asin(Norm.X) / PI + 0.5 V = Asin(Norm.Y) / PI + 0.5 With a polka dot ...