vapory icon indicating copy to clipboard operation
vapory copied to clipboard

Photo-realistic 3D rendering with Python and POV-Ray

Results 32 vapory issues
Sort by recently updated
recently updated
newest added

I use Windows 10. I installed povwin-3.7-agpl3-setup.exe and ran the sample code, but I noticed error; - Code from vapory import * camera = Camera( 'location', [0,2,-3], 'look_at', [0,1,2] )...

I'm rendering a scene with a bunch of little spheres and boxes, and the rendering completes, but then throws this error and crashes the python process. ``` [0]PETSC ERROR: ------------------------------------------------------------------------...

I am trying to run multiple provray sessions in parallel (off a job queue), but they conflict over` __temp__.pov`--when rendering, this file is locked and cannot be opened by a...

I could install vapory. I tried the example you gave. from vapory import * camera = Camera( 'location', [0,2,-3], 'look_at', [0,1,2] ) light = LightSource( [2,4,-3], 'color', [1,1,1] ) sphere...

There is a missing comma after the anti-aliasing option in the README example. This missing comma prevents the example from running.

I am trying to render a scene from mesh. I have a textured mesh which I am loading with assimp. Could you give me an hint as how to render...

Hello. I generate one image-scene using the example code provided. I want to generate more images in a for loop but each time a scene is generated a povray windows...

Dumb question, but can I create objects and alter them later like in a normal OOP language? You can't do this in POV-Ray.

I found a bug with the regex search expression in lines 36-40 of [vapory/io.py](https://github.com/Zulko/vapory/blob/master/vapory/io.py#L36-L40): ```python header, width, height, maxval = re.search( b"(^P\d\s(?:\s*#.*[\r\n])*" b"(\d+)\s(?:\s*#.*[\r\n])*" b"(\d+)\s(?:\s*#.*[\r\n])*" b"(\d+)\s(?:\s*#.*[\r\n]\s)*)", buffer).groups() ``` The outer group...

Due to the problem described [here](http://stackoverflow.com/questions/5658622/python-subprocess-popen-environment-path), python does not search all env paths: > Due to the differences in the underlying implementation, subprocess.Popen will only search the path by default...