Tagged Questions
-1
votes
0answers
49 views
GeoSphere in single triangle strip?
Some graphical applications require to render many Geodesic Spheres, such as on the image below.
Can you provide to the community an efficient algorithm to generate geometry data for rendering such ...
5
votes
3answers
273 views
project a sphere to a plane using matlab
This is probably very basic matlab, so forgive me.
I use the command sphere to create a 3D sphere and have the x,y,z matrices that will produce it using surf. For example:
[x,y,z]=sphere(64);
I'd ...
6
votes
1answer
332 views
Draw Sphere on TImage control of Delphi
I want to draw sphere like this:
Below code is generates Circle's Vertices and Drawing a Circle on TIMAGE BUT i want it for SPHERE:
for i := 0 to 360 do begin
//Find value of X and Y
...
0
votes
1answer
212 views
Collision detection - response between a moving sphere and a circular cylinder
I'm implementing a simple game that encorporates 3d logic. What is the procedure or/and the relative equations in order to detect if a moving sphere collides with a cylinder? My cylinder is static ...
1
vote
1answer
554 views
WPF 3D rotating sphere GUI
I've been trying to make a 3D user interface in WPF for my class assignment and I ran into a problem which I can't fix for 2-3 days now. I've tried to google the answer, I've taken a look into some ...
0
votes
1answer
490 views
draw 3D sphere in c++ without OpenGL
I need to make a sphere ray-tracer in c/c++ without the use of OpenGL. I'm confused though at how to put a sphere or light in a scene without any gl functions. Can someone please explain how this can ...
6
votes
0answers
124 views
3D component animation in Swing [closed]
I work in Swing, and I have the following requirement.
Requirement: a 3D sphere revolving in a JInternalFrame (JPanel or similar), with buttons & labels revolving in a concentric symmetrical ...
1
vote
1answer
406 views
How to plot a list of vectors as a sphere?
I have an array of normalized vectors (1538 of them) forming a sphere. Also I has an array of numbers of the same size 1538. I want to plot something like this:
I tried the sphere and surf ...
2
votes
3answers
496 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 ...
1
vote
1answer
400 views
Slow-Moving 3D Sphere to 3D Triangle Collision
So, I wrote this function to check collisions between a triangle and sphere class in 3D space. These objects collide 1 in a million times when they are supposed to. I was wondering if someone could ...
0
votes
1answer
138 views
WhirlyGlobe for Android?
Is there anything like WhirlyGlobe for Android?
I just need to place a texture on a sphere that can be manipulated by the user. It must also be able to place overlays at various latitudes and ...
1
vote
1answer
1k views
How to create spheres and 3d lines using LWJGL
How do I create spheres and 3d lines using LWJGL?(can you please give full source for your code?)
4
votes
1answer
3k views
Python/matplotlib : plotting a 3d cube, a sphere and a vector?
I search how to plot something with less instruction as possible with matplotlib but I don't find any help for this in the documentation.
I want to plot the following things :
- a wireframe cube ...
0
votes
0answers
283 views
Rotate objects around a point
I'm currently working on a 3d "cloud" which consists of some div elements. These div elements should rotate around a point. This works like a charme on the x-axis but i can't get it working on the ...
1
vote
0answers
145 views
Plotting a 3d sphere in Python and using a jpg “bumpmap”
I'm trying to plot a 3d sphere in Python with matplotlib and Mayavi. The function I'm using is mayavi.mlab.mesh
I can change the colours of the sphere, but I can't get either to use a jpg file as a ...
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, ...
0
votes
1answer
479 views
Texturing a 3D sphere(Can not find a post that helps me)
I am trying to create a 3D sphere and I currently have a sphere made out of points though I need to apply a texture to this and that is causing me problems.
The code for generating the sphere looks ...
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 ...
1
vote
1answer
67 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 ...
0
votes
1answer
4k views
3D sphere with texture in Canvas (HTML5)
Can we bind texture with Canvas (HTML5) 3D Sphere ?
I am referring to this example - http://www.bitstorm.it/blog/en/2011/05/3d-sphere-html5-canvas/
Thanks,
EDIT :
alternate link -
...
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 ...
8
votes
2answers
3k 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 ...
3
votes
2answers
1k 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...")
...
0
votes
2answers
819 views
3
votes
2answers
494 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 ...
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
910 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
...
1
vote
1answer
437 views
Rotate sphere based on lat/lng
Ok so i have an api to a globe that I can only move by setting the x y z axis tilt. (the camera cannot move.) I need to be able to map lat/lng to it. So basically take lat/lng and rotate in x y z and ...
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 ...
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 ...
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 ...
