-1

I have a 3d spherical point set of 10 points, (2 layers of pentagonal loudspeaker array) 2. I want to obtain 2D representation of this configuration. (Mollweide, Mercator, Cylindirical or Equirectangular projection?) I will set the axis so that they give corresponding elevation and azimuthal angles. An example is given in 1 (Taken by ALLRADecoder vst plugin by IEM)

Is there a way to do this with a Python package like matplotlib, mayavi, or similar?

Ege Erdem
  • 9
  • 2

1 Answers1

0

If you want to actually render something similar to above, you might want to look at PyOpenGL however it might not be the most intuitive package to dive into.

If you want to just get the 2d set of points this 3d object makes you could just look at doing some projection maths and then a package like pygame would be ideal for plotting this 2d representation and is quite user-friendly if you're new to python and graphics.

rhyso98
  • 143
  • 5