Hi,
large scene renderings are limited by the RAM usage of the Rhino.exe (Rhino3 1.8GB and Rhino4 at WinXP64 3.2GB) or the build in RAM. For my current project I found some tricks to render very large scenes:
- For high res image use the Vrimage output (look at Coreys tutorial)
- Mesh your scene and save it in an extra file and use this for rendering. (so the NURBS model isn't in the RAM)
- During the rendering is starting open an empty document immediately.
The last method is very useful, because NURBS model and render mesh leave the RAM befor the render process full start. With some help from the Rhino forum I got this little script, that start the rendering and open an empty template file without to save the file befor.
Example: my Rhino4 crash at 3.2GB, but with the script it render with a RAM usage of 1.8GB only.
3.000.000 polygons rendered with GI at 8.000x8.000 pixel ;D
-Micha
Script for copy to a button or direct to the Rhino command line:
It seems to be a Rhino4 bug: if I open a file and start the script, than it dosn't work. But if I move one of the viewports a little befor, than it works.
large scene renderings are limited by the RAM usage of the Rhino.exe (Rhino3 1.8GB and Rhino4 at WinXP64 3.2GB) or the build in RAM. For my current project I found some tricks to render very large scenes:
- For high res image use the Vrimage output (look at Coreys tutorial)
- Mesh your scene and save it in an extra file and use this for rendering. (so the NURBS model isn't in the RAM)
- During the rendering is starting open an empty document immediately.
The last method is very useful, because NURBS model and render mesh leave the RAM befor the render process full start. With some help from the Rhino forum I got this little script, that start the rendering and open an empty template file without to save the file befor.
Example: my Rhino4 crash at 3.2GB, but with the script it render with a RAM usage of 1.8GB only.

3.000.000 polygons rendered with GI at 8.000x8.000 pixel ;D
-Micha
Script for copy to a button or direct to the Rhino command line:
Code:
-_render -_RunScript ( If Rhino.DocumentModified(False)Then Call Rhino.Command ("-_New ""Millimeter""",vbFalse) End If )
Comment