|
|
Hi,
the balustrade in the scene balcony.pov in /scenes/advanced/balcony
doesn't render correctly in RC 6. The isosurface function of the small
columns is not correct. Maybe due to the change from ^ to pow().
So long,
Bonsai
--
<--------------------------->
___ __ __ _ ___ ___ _
| _ ) \ \( ) _) _ )( )
| _ \() |\ \ |\ \/ _ \| |
|___/__/_)\__)___)/ \_)_)
www.b0n541.net
<--------------------------->
Post a reply to this message
|
|
|
|
Bonsai wrote:
>
> Hi,
>
> the balustrade in the scene balcony.pov in /scenes/advanced/balcony
> doesn't render correctly in RC 6. The isosurface function of the small
> columns is not correct. Maybe due to the change from ^ to pow().
>
Seems to be a small conversion typo, 'building.inc' line 93:
function { min(sqrt( x*x + y*y ) - ...
instead of
function { min(sqrt( x*y + y*y ) - ...
Christoph
--
POV-Ray tutorials, IsoWood include,
TransSkin and more: http://www.tu-bs.de/~y0013390/
Last updated 22 Jun. 2002 _____./\/^>_*_<^\/\.______
Post a reply to this message
|
|
|
|
Christoph Hormann wrote:
>
>
> Seems to be a small conversion typo, 'building.inc' line 93:
>
> [...]
and a second time a few characters later, the whole line is:
function { min(sqrt( x*x + y*y ) - fn_Rad(x, y, z), sqrt( x*x + y*y +
pow(abs(z*2),1.4)) - 1.0) }
instead of
function { min(sqrt( x*y + y*y ) - fn_Rad(x, y, z), sqrt( x*y + y*y +
pow(abs(z*2),1.4)) - 1.0) }
I guess someone should check all the other scenes for such errors too...
Christoph
--
POV-Ray tutorials, IsoWood include,
TransSkin and more: http://www.tu-bs.de/~y0013390/
Last updated 22 Jun. 2002 _____./\/^>_*_<^\/\.______
Post a reply to this message
|
|