I'm creating this repository in January 2018 and it is crazy that the best open source option for rendering 3d scenes remains POV ray. Now, POV ray is a great program, but why can't we have that functionality (rendering 2d, 3d and higher dimensional objects and scenes) in Python, a language that is perhaps the most widely used already and only growing in popularity? This code is a first step towards that goal - have the ability to do everything POV ray does - rendering complex 3d objects and scenes, animations and much more in plain, vanilla Python. I imagine this would find applications in creating videos, video games, physical simulations or just pretty pictures.
While there certainly is a very long way to go before this can be a reality, it won't happen without taking a first step. And of course, I could use help :)
Above all else, I want to emphasize simplicity in this library and minimize the dependence on external libraries so more people can hit the ground running with it.
To install the library, run (pyray was taken on pypi):
pip install raypy
Make sure you have all the requirements (requirements.txt) installed. If not, you can run:
pip install -r requirements.txt
Alternately, you can fork/download the code and run from the main folder:
python setup.py install
So far, I've been using this to create YouTube videos for my channel.
Here are some that demonstrate the abilities of this code (also see below for some images created with it) -
I've made every effort to keep the requirements for this project to the bare minimum so most people can get it running with almost no pain. These are -
Python Imaging Library (PIL), numpy and scipy. For writing on math equations images using the methods in WriteOnImage.py, you'll need matplotlib and sympy. All of these can be installed quite easily with pip install -r requirements.txt
To keep things simple and the dependencies minimal, the program simply writes an image or a series of images to the folder ./Images/RotatingCube
(this was the first object that was animated with this tool).
You can run any method tagged @MoneyShot to see how this works. For example, you can run the following method from cube.py -
from shapes.cube import *
cube_with_cuttingplanes(7, popup=True)
and this will generate a colorful 3d cube with diagonal cutting planes shaded in different colors (in the folder where you run it from, file called im0.png). Something like this -
You can now create a series of them using the following code -
for i in range(3, 15):
cube_with_cuttingplanes(numTerms = i, im_ind = i-3)
The series of images can then be easily converted to a video using the open source ffmpeg program. For example
ffmpeg -framerate 10 -f image2 -i im%d.png -vb 20M vid.avi
The video can then be converted to a .gif file if required -
ffmpeg -i vid.avi -pix_fmt rgb24 -loop 0 out.gif
For example, something like this:
In case you're wondering, you can generate the images used in the gif above via:
from shapes.plane import *
from gifgen.all_gifs import *
for i in range(20):
best_direction(im_ind=i)
We welcome any kind of contribution, bug report, suggestion, new module, etc. Anything is welcome.
To create a bouncy sphere or a wavy sphere, run
from shapes.sphere import *
draw_wavy_sphere_wrapper('.\\im', 66, 1)
draw_oscillating_sphere('..\\images\\im', 20, 2)
from functions.functionalforms import *
draw_paraboloids()
from shapes.polyhedron import *
draw_tetartoid()