POV-Ray : Newsgroups : povray.binaries.images : WIP: Fountain Server Time
19 Aug 2024 06:16:44 EDT (-0400)
  WIP: Fountain (Message 1 to 10 of 13)  
Goto Latest 10 Messages Next 3 Messages >>>
From: Duncan Adamson
Subject: WIP: Fountain
Date: 2 Mar 2001 06:16:43
Message: <3A9F811A.1BF5AD94@doc.ic.ac.uk>
A first attempt at a fountain for a garden scene.

Comments please.


Post a reply to this message


Attachments:
Download 'scene.jpg' (38 KB)

Preview of image 'scene.jpg'
scene.jpg


 

From: David Fontaine
Subject: Re: WIP: Fountain
Date: 2 Mar 2001 17:06:40
Message: <3AA018F9.44F23CE4@faricy.net>
Duncan Adamson wrote:

> A first attempt at a fountain for a garden scene.
>
> Comments please.

(wince) It looks like jpeg really really ate it up bad.

I think some minor tweaking and a lot of patience will pay off. I'd like to
see it progress :)

I think, put finer detail in the grass - more noise in the foreground. Scale
the clouds smaller in the vertical direction, too.

The fountain is interesting... glass/transparent objects will really jump out
and create some great renders with the right lighting/atmosphere (and high
render settings and lots and lots of patience ;).  The spray bothers me
though, it's too broken up...

--
David Fontaine  <dav### [at] faricynet>  ICQ 55354965
My raytracing gallery:  http://davidf.faricy.net/


Post a reply to this message

From: Christoph Hormann
Subject: Re: WIP: Fountain
Date: 3 Mar 2001 16:59:52
Message: <3AA16958.E3AF8D36@gmx.de>
Duncan Adamson wrote:
> 
> A first attempt at a fountain for a garden scene.
> 
> Comments please.
> 

Textures could need work, otherwise looks good, how did you do the
fountain?

Christoph

-- 
Christoph Hormann <chr### [at] gmxde>
IsoWood include, radiosity tutorial, TransSkin and other 
things on: http://www.schunter.etc.tu-bs.de/~chris/


Post a reply to this message

From: Stephen Bell
Subject: Re: Fountain
Date: 4 Mar 2001 02:51:09
Message: <3aa1f3ed$1@news.povray.org>
Not bad...  The ripples in your water should be coming from where the water
lands, not where it comes out.  The clouds are pretty weird.  I really like
your unusual sculptures in the fountain.

"Duncan Adamson" <dja### [at] docicacuk> wrote in message
news:3A9F811A.1BF5AD94@doc.ic.ac.uk...
> A first attempt at a fountain for a garden scene.
>
> Comments please.
>


----------------------------------------------------------------------------
----


Post a reply to this message

From: Dan Johnson
Subject: Re: WIP: Fountain
Date: 6 Mar 2001 05:51:19
Message: <3AA4C2BC.BF63D4C@hotmail.com>
Duncan Adamson wrote:

> A first attempt at a fountain for a garden scene.
>
> Comments please.
>
>   ------------------------------------------------------------------------
>  [Image]

The dodecahedrons don't seem to be rotated quite like I would expect.  The top
face's are not parallel to the grass, and they don't have a consistent side to
the center of the pool.  When I was making a space frame out of many polyhedra
I discovered placing them accurately takes some effort (mental note pre define
some rotations in my polyhedra include file).

Oops got side tracked, and figured it out instead of sending message.  Well
the rotation depends on what code you are using to create the dodecahedron.
If you are using my include file I already have it figured out.


--
Dan Johnson

http://www.geocities.com/zapob


Post a reply to this message


Attachments:
Download 'dodecahedron.gif' (13 KB)

Preview of image 'dodecahedron.gif'
dodecahedron.gif


 

From: Duncan Adamson
Subject: Re: WIP: Fountain
Date: 6 Mar 2001 06:56:16
Message: <3AA4D060.F77A938@doc.ic.ac.uk>
Good plan, at present they are simply randomlly rotated (I didn't know what to do
with them.  Will look at your macro to work out the maths.

Thanks for the comment.  Will update latest version soon.

>
> The dodecahedrons don't seem to be rotated quite like I would expect.  The top
> face's are not parallel to the grass, and they don't have a consistent side to
> the center of the pool.


Post a reply to this message

From: Dan Johnson
Subject: Re: WIP: Fountain
Date: 6 Mar 2001 08:48:50
Message: <3AA4EC4F.A2AE6FFD@hotmail.com>
Duncan Adamson wrote:

> Good plan, at present they are simply randomlly rotated (I didn't know what to do
> with them.  Will look at your macro to work out the maths.

Are you using my macro?

>
> Thanks for the comment.  Will update latest version soon.

As I said "If you are using my include file I already have it figured out.", but my
include file isn't that much help at figuring it out.  Since I have it figured out
already I might as well post it.

// source of scene rendered below
#include "colors.inc"
#include "polyhedra.inc"
#include "finish.inc"

#declare Dodecahedron_dihedral = Angle_between_vectors(<-Golden,1,0>,<Golden,1,0>)
#declare RotateToFace = ((180 - Dodecahedron_dihedral)/2);
#declare Inscribe_radius = vlength
((DodecahedronFaceLength*Icosahedron1)-(Golden*x));
#declare Dodecahedron_On_Face = object {Dodecahedron_faces rotate RotateToFace*z
translate DodecahedronFaceLength*y}
#declare Spout = cylinder {0,vnormalize(Icosahedron9)*3,.3 rotate RotateToFace*z
translate DodecahedronFaceLength*y texture{pigment {Blue} finish {Dull}}}
#declare Pedestal = union {
        union{
                object{Dodecahedron_On_Face translate 4*y}
                cylinder{0,<0,4,0>,Inscribe_radius}
                pigment {Red} finish{Dull}}
        object {Spout translate 4*y}}
union {
        object {Pedestal translate 6*x}
        object {Pedestal translate 6*x rotate 120*y}
        object {Pedestal translate 6*x rotate -120*y}
        }
plane {y,0 pigment{Green} finish {Dull}}
light_source{<12,20,-30> rgb 2}
camera {location <2,11,-15> look_at 0}

//#fopen Calc "c:\data\data.txt" write
//#write (Calc, "RotateToFace = ",RotateToFace,"\n","DodecahedronFaceLength =
",DodecahedronFaceLength)
//#fclose Calc

//  Contents of data.txt created with this file
/*
RotateToFace = 31.7175
DodecahedronFaceLength = 1.37638
*/



--
Dan Johnson

http://www.geocities.com/zapob


Post a reply to this message


Attachments:
Download 'dodecahedron.gif' (26 KB)

Preview of image 'dodecahedron.gif'
dodecahedron.gif


 

From: The "D"
Subject: Re: Fountain
Date: 7 Mar 2001 01:01:42
Message: <3aa5cec6@news.povray.org>
Duncan Adamson <dja### [at] docicacuk> wrote in message
news:3A9F811A.1BF5AD94@doc.ic.ac.uk...
> A first attempt at a fountain for a garden scene.

Spiffy. How are you bounding the water?



--
-The "D"
    A Thunderstorm is God's way of telling you that you spend too much time
on the
computer
Email address given is a spam catcher only


Post a reply to this message

From: Duncan Adamson
Subject: Re: Fountain
Date: 7 Mar 2001 05:04:41
Message: <3AA607B9.9175027F@doc.ic.ac.uk>
The \"D\" wrote:

> Duncan Adamson <dja### [at] docicacuk> wrote in message
> news:3A9F811A.1BF5AD94@doc.ic.ac.uk...
> > A first attempt at a fountain for a garden scene.
>
> Spiffy. How are you bounding the water?

Water is
                    blue plane at y=-5
                    intersection{
                        a glass plane at y=-0.2
                        a prism in the shape of the inside of the fountain
                    }
Quite nice and simple


Post a reply to this message

From: Richard Dault
Subject: Re: Fountain
Date: 7 Mar 2001 13:14:50
Message: <3aa67a9a@news.povray.org>
It appears that your flowing water is composed of spheres.  Try switching it
to blobs.

"Duncan Adamson" <dja### [at] docicacuk> wrote in message
news:3A9F811A.1BF5AD94@doc.ic.ac.uk...
> A first attempt at a fountain for a garden scene.
>
> Comments please.
>


Post a reply to this message

Goto Latest 10 Messages Next 3 Messages >>>

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