-1
votes
3answers
90 views

Python 3 Write class to return surface area and volume of sphere

I have tried everything and my code seems to be very close but i keep getting a name error when i have defined the variable. from math import * class Spheres: def __init__(self, radius): ...
2
votes
1answer
264 views

Python matplotlib wireframe distortion

I am trying to create a plot composed of multiple wireframe spheres using matplotlib. I found a code fragment to plot one such sphere here so I thought it would be easy to extend it to multiple ...
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 ...
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 ...
1
vote
1answer
418 views

Calculate latitude longitude points of geodesic grid triangle points (preferable using python)

I would like to divide a sphere with a certain radius into a geodesic grid with the triangle edges of around a certain size. As a result I would like to have a list of latitude/longitudes of all the ...
5
votes
4answers
3k 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 ...
2
votes
3answers
555 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
1k 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 ...