Tagged Questions
7
votes
3answers
284 views
Dispersing n points uniformly on a sphere [closed]
I am trying to disperse n points on a sphere such that each point has the "same" area "around" it. Basically, I'm trying to integrate a function over a sphere by evaluating at n points and assuming ...
-1
votes
1answer
70 views
Compute angle from vertical at which a sphere strikes the lip of a cup [closed]
I'm working on a problem, wherein a sphere of known radius is dropped vertically and strikes the edge of a cup. I need to figure out the angle of deflection, which will be a function of where along ...
2
votes
3answers
508 views
how map 2d grid points (x,y) onto sphere as 3d points (x,y,z)
I have a set of 2d grid points (x,y) that I want to map/project onto a sphere as 3d points (x,y,z).
I realize there will be some warping towards the poles as abs(y) increases but my grid patch will ...
0
votes
1answer
155 views
Draw a path around a globe?
So basically I would like to:
Draw a path between two positions in Earth, with longitude and latitude coordinates
Be able to render this path with multiple straight lines (e.g. with OpenGL)
Specify ...
1
vote
1answer
336 views
Raytracing spherical texture
I'm trying to fit a world texture on a sphere. It's almost working, but texture is repeated twice. This is my mapping code:
v = acosf(sp->coll->z / (double)sp->radius) / M_PI ;
u = ...
11
votes
8answers
4k views
Evenly distributing n points on a sphere
I find myself overwhelmed with information, and I still haven't been able to find exactly what I'm looking for, at least not in a format I can convert for my uses.
What I need is an algorithm that ...
4
votes
4answers
514 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
3answers
460 views
Ray-Sphere intersection: the discriminant is WRONG
Alright, so I'm working on a ray tracer using phong shading. So far, everything is good. I've cast rays that have hit the spheres in my scene, applied phong shading to them, and it looks normal.
Now, ...
0
votes
2answers
160 views
Slerp with more than two points
The correct way to interpolate between two points on a sphere is using slerp.
How would one interpolate between more than two points on a sphere? So summing a set of points with different weights on ...
0
votes
1answer
282 views
Moving a Sphere so its Z-Axis faces a direction
Firstly - Z is Up in this problem.
Context: Top down 2D Game using 3D objects.
The player and all enemies are Spheres that can move in any direction on a 2D Plane (XY). They rotate as you would ...
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 ...
0
votes
2answers
1k views
C# Draw perfect sphere from center(x,y,z) to outermost(x,y,z) inside a 3d grid space
I have values for the following variables::
x0,y0,z0 = coords of the first selection (intended to be center of sphere)
x1,y1,z1 = coords of the second selection (intended to be an outmost point for ...
0
votes
1answer
913 views
Mapping points in 2d space to a sphere
I have a bunch of points in a rectangular x/y space which I would like to project onto a sphere. As in, I am trying to write this function:
function point_on_sphere(2dx:Number, 2dy:Number) : Vector3D
...
12
votes
3answers
4k views
Mapping A Sphere To A Cube
There is a special way of mapping a cube to a sphere described here:
http://mathproofs.blogspot.com/2005/07/mapping-cube-to-sphere.html
It is not your basic "normalize the point and you're done" ...