Original Post
Can someone check this psuedo code for me please. It's for working out the x,y,z coords for a sphere using 2 angles, horizontal and vertical and the radius of the sphere. It doesn't seem to work properly. x = radius * cos(vert angle) * sin(hoz angle); y = radius * cos(hoz angle); z = radius * sin(vert angle) * sin(hoz angle);