The sphere tag has no wiki summary.
1
vote
1answer
829 views
How to plot a dome in MATLAB w/ different radii?
I need to plot a dome (or half sphere) that have different radii. I was told how to plot the shpere on a previous question:
[x,y,z] = sphere; %# Makes a 21-by-21 point sphere
x = x(11:end,:); ...
1
vote
5answers
1k views
Lighting inside of a sphere?
I have this question in mind: I need to make a scene that looks like a real sky. My first idea was to make a cube and texturize it. It wasn't that good looking. I came up with the idea of using a ...
3
votes
2answers
2k views
Sphere - sphere collision detection -> reaction
I need to make an algorithm that detects when two spheres collide, and, the direction that wich one will take an instant after the collision.
Let say, Imagine like when you open your table in a pool ...
2
votes
3answers
620 views
Minimum bounding rectangle of a circle on a sphere
What R packages are available to calculate the minimum bounding box for a great circle?
For example:
box <- polycirc( c( longitude, latitude ), distance=35 )
This would return the bounding box ...
4
votes
1answer
812 views
3D Sphereical Terrain with an 8 mesh sphere. The edges of the mesh are obvioulsy seen and I'm not sure why
I'm working in Unity3D, but my issue is with 3D meshes. I'm hoping someone here can help or point me in the right direction.
I have 2 version of code, http://www.pasteit4me.com/695002 (old) and ...
2
votes
4answers
243 views
Anyone know were i could find an algorithm or have a algorithm they could share to split a sphere (mesh) into random parts?
I have a list a vertices and a list of triangles. I'd like to split this single mesh into, say 5, randomly shaped meshes. When the 5 randomly shaped meshes are in place the sphere should all line up ...
8
votes
4answers
1k views
Points, Lines, and Polygons on Spheres with C/C++
My application is to represent shapes on the Earth's (using a sphere is sufficient) surface. Those can be points, lines, and polygons. Coordinates should be defined by using degrees or radians (just ...
5
votes
3answers
945 views
Compute bounding quad of a sphere with vertex shader
I'm trying to implement an algorithm from a graphics paper and part of the algorithm is rendering spheres of known radius to a buffer. They say that they render the spheres by computing the location ...
0
votes
2answers
3k views
Finding intersection of two spheres
Consider the following problem - I am given 2 links of length L0 and L1. P0 is the point that the first link starts at and P1 is the point that I want the end of second link to be at in 3-D space. I ...
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" ...
3
votes
2answers
1k views
fast sphere-grid intersection
given a 3D grid, a 3d point as sphere center and a radius, i'd like to quickly calculate all cells contained or intersected by the sphere.
Currently i take the the (gridaligned) boundingbox of the ...
15
votes
5answers
875 views
Efficient algorithm for finding spheres farthest apart in large collection
I've got a collection of 10000 - 100000 spheres, and I need to find the ones farthest apart.
One simple way to do this is to simply compare all the spheres to each other and store the biggest ...
1
vote
1answer
778 views
Getting x,y coordinates of a texture mapped on sphere (WPF, synch, no visualtreehelper.hittest)
technology: WPF, C#
pretext:
I am making a game with a custom gyroscope+accelerometer device. I have a sphere that has a labyrinth map on it. The texture is mapped by a set of positions and texture ...
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 ...
4
votes
2answers
1k views
Texturing error on a Sphere
I have a number of spherical longitude/latitude coordinates for points on a sphere that I need to visualize. For that purpose, I transformed the points to cartesian coordinates and built a mesh of ...
1
vote
2answers
3k views
XNA or OpenGL sphere texture mapping
I'm trying to map a completly normal texture into a sphere.
I can't change my texture to a wrapped one, so I need to find some mapping function.
This is my vertex shader code:
vec3 north = ...