|
 |
yeah, I was actually hoping for a more automated process... wishfull
thinking I guess? Like optimally, if there were 4 machines each would render
every fourth line and the image would get written on one of the machines..
so kind of like multithreading. I was wanting it also for single images not
animations even.
Post a reply to this message
|
 |
|
 |
"Fat Mike" <no### [at] address net> wrote in message
news:3afafd2c$1@news.povray.org...
> yeah, I was actually hoping for a more automated process... wishfull
> thinking I guess? Like optimally, if there were 4 machines each would
render
> every fourth line and the image would get written on one of the machines..
> so kind of like multithreading. I was wanting it also for single images
not
> animations even.
>
AFAIK there are a lot of practical problems with this approach -
anti-aliasing and radiosity in particular. A better option would be to
render larger areas with overlap between perhaps?
Post a reply to this message
|
 |
|
 |
Tom Melly <tom### [at] tomandlu co uk> wrote:
: AFAIK there are a lot of practical problems with this approach -
: anti-aliasing and radiosity in particular. A better option would be to
: render larger areas with overlap between perhaps?
With antialiasing the problem disappears by just rendering larger areas
(one line per process is a real killer with antialiasing, but if you render
several tens of lines in a bunch then the antialiasing overhead doesn't hit
so hard).
For radiosity there's no yet any perfect solution.
--
#macro N(D,I)#if(I<6)cylinder{M()#local D[I]=div(D[I],104);M().5,2pigment{
rgb M()}}N(D,(D[I]>99?I:I+1))#end#end#macro M()<mod(D[I],13)-6,mod(div(D[I
],13),8)-3,10>#end blob{N(array[6]{11117333955,
7382340,3358,3900569407,970,4254934330},0)}// - Warp -
Post a reply to this message
|
 |
|
 |
Have you tried PVM-Pov? (see Ken's reply for the link)
PVM-Pov distributes the rendering of the image among the number of machines and
you get the whole image on the machine where you started the main process. It
works even fine with anti-aliasing; radosity is not perfect though.
- micha
Fat Mike wrote:
>
> yeah, I was actually hoping for a more automated process... wishfull
> thinking I guess? Like optimally, if there were 4 machines each would render
> every fourth line and the image would get written on one of the machines..
> so kind of like multithreading. I was wanting it also for single images not
> animations even.
Post a reply to this message
|
 |