POV-Ray : Newsgroups : povray.binaries.images : Picking up steam... slowly... Server Time
31 Jul 2024 18:27:11 EDT (-0400)
  Picking up steam... slowly... (Message 11 to 18 of 18)  
<<< Previous 10 Messages Goto Initial 10 Messages
From: clipka
Subject: Re: Picking up steam... slowly...
Date: 22 Sep 2009 05:14:32
Message: <4ab89578@news.povray.org>
Thomas de Groot schrieb:

> Impressive and interesting. Nice texture too. I am curious to see how long 
> you will be able to sustain the CSG construction before render times become 
> unmanageable...

I guess that will not happen at all.

I actually found that the detail stuff isn't so much of a problem - it 
was the big holes punched into the main struts that bogged down render 
times for some reason I didn't fully grasp. I'm using a different 
approach for them now, which is much more render-time-friendly: 
Previously, I had defined those holes separately from the struts' basic 
outline, each of these being a complex compound based on a prism shape. 
Changing this to use just one multi-loop prism made quite some difference.


Post a reply to this message

From: Alain
Subject: Re: Picking up steam... slowly...
Date: 22 Sep 2009 12:53:48
Message: <4ab9011c$1@news.povray.org>

> Thomas de Groot schrieb:
> 
>> Impressive and interesting. Nice texture too. I am curious to see how 
>> long you will be able to sustain the CSG construction before render 
>> times become unmanageable...
> 
> I guess that will not happen at all.
> 
> I actually found that the detail stuff isn't so much of a problem - it 
> was the big holes punched into the main struts that bogged down render 
> times for some reason I didn't fully grasp. I'm using a different 
> approach for them now, which is much more render-time-friendly: 
> Previously, I had defined those holes separately from the struts' basic 
> outline, each of these being a complex compound based on a prism shape. 
> Changing this to use just one multi-loop prism made quite some difference.

A prism is not the more effecient primitive: It's relatively hard to 
optimize a "free form" object.
Punching holes in any object result in bounding inefeciency, that 
increases the render time.
Each and every ray that encounter the bounding box of one of the struts 
needs to be tested against the strut AND every object used to make the 
holes.

With the complexe prism, you now only need to test that object.


Alain


Post a reply to this message

From: clipka
Subject: Re: Picking up steam... slowly...
Date: 22 Sep 2009 12:59:19
Message: <4ab90267@news.povray.org>
Just to show off the hardest single part so far.

The locomotive has 6 of these - plus 2 more that are similar, but a 
little less complex.

Still all pure CSG.


Post a reply to this message


Attachments:
Download 'steam.jpg' (63 KB)

Preview of image 'steam.jpg'
steam.jpg


 

From: clipka
Subject: Re: Picking up steam... slowly...
Date: 22 Sep 2009 13:03:41
Message: <4ab9036d$1@news.povray.org>
Alain schrieb:

> Punching holes in any object result in bounding inefeciency, that 
> increases the render time.

I know that, but...

> Each and every ray that encounter the bounding box of one of the struts 
> needs to be tested against the strut AND every object used to make the 
> holes.

... for some reason the many, many small cylinders I'm cutting away to 
round off inward edges don't seem to matter that much.


Post a reply to this message

From: Alain
Subject: Re: Picking up steam... slowly...
Date: 22 Sep 2009 14:00:40
Message: <4ab910c8$1@news.povray.org>

> Alain schrieb:
> 
>> Punching holes in any object result in bounding inefeciency, that 
>> increases the render time.
> 
> I know that, but...
> 
>> Each and every ray that encounter the bounding box of one of the 
>> struts needs to be tested against the strut AND every object used to 
>> make the holes.
> 
> ... for some reason the many, many small cylinders I'm cutting away to 
> round off inward edges don't seem to matter that much.

A cylinder is much more effecient than a prism to cut holes.
If you cut ceveral holes using prisms, you need to evaluate each prism 
for every rays.

Use two prisms, one for the faces and another for the edges, and add 
small cylinders to do the beveling between the faces and the edges.
You'll get an union with no or very few differences or intersections.

Do you use a prism and 3 cylinders to punch those rounded triangular 
holes. If you use a besier spline, you can have straight and round 
parts, and do away with a good part, even all, of the cylinders. Even if 
the prism takes slightly longer to render after that, you'll gain more 
by no longer having that difference.


Alain


Post a reply to this message

From: clipka
Subject: Re: Picking up steam... slowly...
Date: 22 Sep 2009 15:00:51
Message: <4ab91ee3$1@news.povray.org>
Alain schrieb:

> A cylinder is much more effecient than a prism to cut holes.

Um... yes sir, but how would you cut /straight/ lines with a cylinder?

> If you cut ceveral holes using prisms, you need to evaluate each prism 
> for every rays.
> 
> Use two prisms, one for the faces and another for the edges, and add 
> small cylinders to do the beveling between the faces and the edges.
> You'll get an union with no or very few differences or intersections.

'Scuse me, but you're not telling me anything new. I didn't want to go 
into that much detail, but that's exactly how I've been doing it right 
from the start, except that I didn't make use of multi-loop polygons.

(You're forgetting the spheres and tori, btw... you can't properly bevel 
in 3 dimensions without those.)

 > If you use a besier spline, you can have straight and round
> parts, and do away with a good part, even all, of the cylinders. Even if 
> the prism takes slightly longer to render after that, you'll gain more 
> by no longer having that difference.

While this may be so, splines are (a) more cumbersome to work with than 
the approach I'm using, as they are not so straightforward, to control; 
(b) very difficult to smoothly interface to standard box-&-cylinder 
geometry, and (c) I'd be lost with the math required to displace the 
spline for the beveling job on the outline (if you know what I mean).


Post a reply to this message

From: Thomas de Groot
Subject: Re: Picking up steam... slowly...
Date: 23 Sep 2009 04:52:19
Message: <4ab9e1c3@news.povray.org>
"clipka" <ano### [at] anonymousorg> schreef in bericht 
news:4ab90267@news.povray.org...
> Just to show off the hardest single part so far.
>
> The locomotive has 6 of these - plus 2 more that are similar, but a
> little less complex.
>
> Still all pure CSG.
>
>

wow

Thomas


Post a reply to this message

From: clipka
Subject: Re: Picking up steam... slowly...
Date: 23 Sep 2009 08:55:18
Message: <4aba1ab6$1@news.povray.org>
Thomas de Groot schrieb:

>> Still all pure CSG.
> 
> wow

Absolutely positively possible (at least for me) only due to a 
"rounded-off corners thingumajig" framework.

There's absolutely /no way/ I would go through all the pain of computing 
and hacking in the parameters for every individual torus, cylinder and 
prism in there :-P


Post a reply to this message

<<< Previous 10 Messages Goto Initial 10 Messages

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.