Tagged Questions
The sphere tag has no wiki summary.
15
votes
5answers
414 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 ...
8
votes
4answers
848 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 ...
8
votes
3answers
1k 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" ...
7
votes
1answer
671 views
openGL sphere that is both wireframe and solid
I manually drew a sphere, at last :) I want my sphere to be red, but the outlines to be green:
In order to achieve this I did the following. I drew a solid sphere in red, and then I drew the same ...
6
votes
2answers
1k views
3D Sphere OpenGL
iv'e just gotten into this whole OpenGL thing because i would like to play around with 3D. (Since i'm trying to develop a game for android). However, after days of learning the basic and how to create ...
4
votes
3answers
422 views
Drawing Sphere in OpenGL without using gluSphere()?
Are there any tutorials out there that explain how I can draw a sphere in OpenGL without having to use gluSphere()?
Many of the 3D tutorials for OpenGL are just on cubes. I have searched but most of ...
4
votes
1answer
109 views
Calculating surface fragments (continents) on an expanding sphere (Earth)
Let's suppose plate tectonics is wrong and our planet Earth has expanded over time, the continents being the remnants of a crust that once covered the entire surface of a smaller planet, the oceans ...
4
votes
1answer
471 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 ...
4
votes
2answers
560 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 ...
4
votes
4answers
8k views
how to draw 3d sphere?
I want to draw a 3d ball or sphere in html 5.0 canvas. I want to understand the Algorithm about how to draw 3d sphere. Who can share this with me?
Thanks in advance !
4
votes
2answers
976 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 ...
3
votes
2answers
721 views
How do I use texture on a sphere in three.js
I've downloaded a sphere example from: http://aerotwist.com/lab/getting-started-with-three-js/ and I can see the nice red sphere. I'd like to use a texture on it. I've tried this:
var texture = ...
3
votes
7answers
1k 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 ...
3
votes
4answers
710 views
Python Uniform Spherical Distribution
I am looking to be able to create a uniform sphere of particles.
This is what I am looking for(images courtesy of http://nojhan.free.fr/metah/)
This is a picture of a slice of the sphere
This is ...
3
votes
2answers
341 views
Find the projection of a vector on the icosahedron or on its unfolded surface
Consider a sphere with center in coordinates' origin, and an inscribed icosahedron, oriented such that the two most distant vertices lay on Z coordinate axis, and one of the edges emerging from any of ...
3
votes
1answer
512 views
Interpolate x, y, z coordinates on a sphere using points from two spin vectors?
I want to plot 3D points in real time that lie upon the surface of a unit sphere (r = 1).
There are two spin vectors at work here. One vector rotates around the Y axis, it's X and Z values are ...
3
votes
2answers
580 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
0answers
16 views
algorithm to rasterize and fill a hypersphere?
I'm trying to rasterize and fill a hypersphere. In essence, I have a d-dimensional grid of fixed size and a sphere (center, radius) and want to find out which cells of the grid overlap with the sphere ...
2
votes
1answer
232 views
Android textured Sphere
I want to draw an earth globe on android. At this point I need help with the UV texture coordinates. I'm using this earth texture (kibotu.net/earth.jpg). Currently it looks like this front side ...
2
votes
1answer
76 views
Usage of Sector/Sphere in production systems
I just found out about sector/sphere and am interested to use it in future systems.
Is anyone currently using sector/sphere (http://sector.sourceforge.net/) in production systems? If so, what are ...
2
votes
2answers
132 views
Which geometrical calculations can be accelerated using OpenGL
I need to accelerate some programs that use intensive calculations where surface calculations from the intersection between cubes, spheres and similar are needed. Using CUDA I need to specify all the ...
2
votes
1answer
556 views
How to draw Sphere with OPENGL library?
Can somebody give full source code of drawing a sphere with OPENGL?
Thanks,
2
votes
3answers
319 views
creating deformations on a sphere surface (using python?)
Hi :)
i have the following python code that generates points lying on a sphere's surface
from math import sin, cos, pi
toRad = pi / 180
ox = 10
oy = -10
oz = 50
radius = 10.0
radBump = 3.0
...
2
votes
1answer
454 views
Approximating a sphere in openGL
I am trying to approximate a sphere using the instructions at http://local.wasp.uwa.edu.au/~pbourke/miscellaneous/sphere_cylinder/, but it doesn't look right at all. This is my code:
def ...
2
votes
1answer
625 views
Mapping textures to a sphere OpenGL ES
Right i am just getting into OpenGL ES, and if i am honest it is very daunting.
Just need a little guidance to point me in the right direction for my current challenge.
I have some code that ...
2
votes
3answers
338 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 ...
2
votes
4answers
160 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 ...
2
votes
2answers
693 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 ...
1
vote
2answers
74 views
tessellating a sphere using triangles of different colors
I am writing a function to generate a sphere using triangles to tessellate it, but what I want is for the triangles to all have different colors. However, when I run the code, it creates a sphere but ...
1
vote
1answer
66 views
OpenGLUT: Texture for a sphere: what's the correct way to do it?
I need to give texture to an sphere: but I want to learn a good way to do it: I read methods which seem not to take advantage of the glut, they only use gl features. Maybe I am trying something ...
1
vote
0answers
82 views
displaying a sphere with longitude and latitude grid android
I'm developing a AR app in android what i want it to do is overlay a camera image with a section of a grid. this gird should display longitude and latitude.
so this sphere will have a radius of that ...
1
vote
3answers
115 views
calculating a sphere in opengl
I want to calculate all the vertices needed and connect them with lines, so I eventually come up with a sphere. How many ways are there to do it? And also the lines between the vertices, will be ...
1
vote
1answer
28 views
y-orbit tumbles from top to bottom as mouseY changes in Processing IDE
NOTE: this is in the Processing IDE
I am trying to get spherical orbiting down and i've almost got it. this is what i have so far:
float cameraTheta, cameraPhi, cameraRadius; //camera position in ...
1
vote
1answer
166 views
a planet in openGL: vector data or texture mapping?
I am completely new to 3D and started with Jeff Lamarche's tutorials as an introduction to openGL ES for iPhone, then so far, I am able to draw a spinning sphere, which will the base of my ...
1
vote
2answers
146 views
'object' does not contain a constructor that takes 3 arguments
I'm trying my hand at generating spherical terrain in XNA 4.0, and am using an Icosahedron to achieve a sphere with evenly-distributed vertices. I'm fairly new to Xna, and I'm running into this ...
1
vote
1answer
596 views
In iOS Development, using Core Graphics and/or Quartz 2D, how can I draw a circle filled with a gradient in such a manner that it looks like a sphere?
So far I have looked at using CGContextDrawLinearGradient() and CGContextDrawRadialGradient(), however, with the former I can't figure out how to make the gradient look like a sphere, and with the ...
1
vote
1answer
133 views
Points resulting from the intersection between three spheres using GPU hardware
There are analytical expressions that permit the calculation of the curve resulting from the overlapping between three penetrating spheres. There are also approximate methods that using grids or ...
1
vote
1answer
438 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
317 views
Random Point on a given Sphere
I want to select random points on a given sphere. This page explains it quite well:
http://mathworld.wolfram.com/SpherePointPicking.html
("To obtain points such that any small area on the sphere...")
...
1
vote
1answer
371 views
Rotating a sphere from point to point
I have a unit sphere that Is centered at the origin and my camera is also centered at the origin. The camera is facing z=-1.
I change my view point by rotating the camera first about the x axis and ...
1
vote
2answers
138 views
can vertices coincide in convex polygons?
I am new to openGL and I am reading the redbook. Now, as an exercise I want to manually draw a sphere. For that I am dividing the sphere into slices and stacks, and thus I get multiple rectangles, but ...
1
vote
1answer
236 views
Problems mapping cubemaps to a sphere
I'm currently trying to create a procedural planet generating tool. I have started off by mapping a cube to a sphere like so:
Next I'm using Libnoise to a heightmap cube using 3D Perlian noise. I ...
1
vote
0answers
121 views
Sphere Mapping Non Spherical Objects
I am facing a problem more or less similar to the post
http://stackoverflow.com/questions/1513383/texturing-error-on-a-sphere
The difference is I am trying to sphere map non spherical objects.I will ...
1
vote
5answers
627 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 ...
1
vote
1answer
578 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
936 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 ...
1
vote
2answers
2k 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 = ...
0
votes
0answers
38 views
Draw A Sphere With Opengl
I draw the sphere by OpenGL.
This program can draw sphere when "SLIED = STACK".
But It's doesn't work when "SLIED not equal STACK".
I may be mistake "index array".
I want to use VBO and DMA(Dynamic ...
0
votes
3answers
69 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
1answer
59 views
Why might I see this OpenGL spherical mapping artifact in GLSL?
I'm trying to map a globe texture onto a sphere. I'm using a plate carrée (Equirectangular) map projection, and there's this meridian which has this "blurring". What's strange is that the blurring ...