POV-Ray : Newsgroups : povray.binaries.images : IRTC dandelion Server Time
31 Jul 2024 18:22:59 EDT (-0400)
  IRTC dandelion (Message 1 to 9 of 9)  
From: JWV
Subject: IRTC dandelion
Date: 5 Jul 2009 16:40:57
Message: <4a510fd9@news.povray.org>
Hi there,

Since the IRTC is back again, it seemed a good idea to jump in and make 
  an image. Staying on-topic of rebirth, plants and seeds are a suitable 
topic to make a not to complicated scene. So, there i go, making a 
dandelion seed (just flying away from the flower). The problem now is, 
how to make the seed head? At the moment it is a scaled sphere, but it 
should be more like this image (yes, i know, i am shamelessly 
reproducing the image :-)):

http://stevehickey.files.wordpress.com/2008/05/dandelion_seed.jpg

As you can see, there are dimples in the surface. My idea would be to 
make a surface with blobs. But how to place the blobs? The dimples 
should be evenly distributed over the surface (like a golfball). The 
only thing that comes to mind is to place the dimples randomly, and then 
iterativly let them "find" the place where they are the least close to 
their neighbours. Needles to say, this is complicated and a project on 
its own.

So, any pointers?

Thanks in advance,

JWV


Post a reply to this message


Attachments:
Download 'irtc.jpg' (35 KB)

Preview of image 'irtc.jpg'
irtc.jpg


 

From: Reactor
Subject: Re: IRTC dandelion
Date: 5 Jul 2009 17:55:00
Message: <web.4a5120433f1e14c4aa8d57e30@news.povray.org>
JWV <Willempie_39___@___hotmail.com> wrote:
> Hi there,
>
> Since the IRTC is back again, it seemed a good idea to jump in and make
>   an image. Staying on-topic of rebirth, plants and seeds are a suitable
> topic to make a not to complicated scene. So, there i go, making a
> dandelion seed (just flying away from the flower). The problem now is,
> how to make the seed head? At the moment it is a scaled sphere, but it
> should be more like this image (yes, i know, i am shamelessly
> reproducing the image :-)):
>
> http://stevehickey.files.wordpress.com/2008/05/dandelion_seed.jpg
>
> As you can see, there are dimples in the surface. My idea would be to
> make a surface with blobs. But how to place the blobs? The dimples
> should be evenly distributed over the surface (like a golfball). The
> only thing that comes to mind is to place the dimples randomly, and then
> iterativly let them "find" the place where they are the least close to
> their neighbours. Needles to say, this is complicated and a project on
> its own.
>
> So, any pointers?
>
> Thanks in advance,
>
> JWV

are you talking about the seed or the flower head?  If you used a blob for the
flower head, the placement may not be too complex.  You could start with an
ordered placement to maintain the correct separation and perturb them randomly,
or, like you mentioned, use a random placement that checks to make sure no two
are too close.  The ordered start method is easiest and can produce acceptable
results with some tinkering.

I would probably do it as cut-aways - have the head be a larger sphere, and
place the group of smaller ones at a fixed location (of distance radius from
the center of the large sphere), then use a series of ordered rotations to
place them on the surface.

Alternatively, you could use a mesh (which is probably what I would use).  That
may also make making the petals easier.


-Reactor


Post a reply to this message

From: Christian Froeschlin
Subject: Re: IRTC dandelion
Date: 6 Jul 2009 07:15:35
Message: <4a51dcd7$1@news.povray.org>
JWV wrote:

> So, any pointers?

Maybe this can help you get started, even though your
flower head isn't quite spherical:

http://www.ogre.nu/sphere.htm


Post a reply to this message

From: Christian Froeschlin
Subject: Re: IRTC dandelion
Date: 6 Jul 2009 07:22:31
Message: <4a51de77$1@news.povray.org>
Actually, the dimples might also be arranged similar
to a fibonacci spiral like seeds of a sunflower:

http://en.wikipedia.org/wiki/Fibonacci_number
http://taystar.com/morespirals2.html


Post a reply to this message

From: Dave Blandston
Subject: Re: IRTC dandelion
Date: 7 Jul 2009 22:10:01
Message: <web.4a53ff0c3f1e14c4ed14c4120@news.povray.org>
JWV <Willempie_39___@___hotmail.com> wrote:

> As you can see, there are dimples in the surface. My idea would be to
> make a surface with blobs. But how to place the blobs? The dimples
> should be evenly distributed over the surface (like a golfball). The
> only thing that comes to mind is to place the dimples randomly, and then
> iterativly let them "find" the place where they are the least close to
> their neighbours. Needles to say, this is complicated and a project on
> its own.
>
> So, any pointers?
>
> Thanks in advance,
>
> JWV

Here's another way to think about this problem: Imagine the surface as a lattice
of sphere sweeps instead of a solid surface with dimples. That's what it looks
like to me, especially the lower left area of the photo where the surface
appears to be woven out of fibers. The dimple method would not re-create this
effect.

That looks like a fun project, and you're off to a great start!

Regards,
Dave Blandston


Post a reply to this message

From: Dave Blandston
Subject: Re: IRTC dandelion
Date: 8 Jul 2009 01:10:04
Message: <web.4a5428f33f1e14c4ed14c4120@news.povray.org>
> As you can see, there are dimples in the surface. My idea would be to
> make a surface with blobs. But how to place the blobs? The dimples
> should be evenly distributed over the surface (like a golfball). The
> only thing that comes to mind is to place the dimples randomly, and then
> iterativly let them "find" the place where they are the least close to
> their neighbours. Needles to say, this is complicated and a project on
> its own.
>
> So, any pointers?
>
> Thanks in advance,
>
> JWV

Here's another way to look at the problem: Instead of a solid surface with
dimples, imagine the surface as a lattice of sphere sweeps. It looks to me like
the surface in the photo actually consists of woven fibers, which the dimples
you're considering would not replicate. The diameter of a sphere sweep is
variable, which would allow you to replicate the slightly blobby appearance of
the fibers.

That looks like a fun project, and you're off to a great start!

Regards,
Dave Blandston


Post a reply to this message

From: Dave Blandston
Subject: Re: IRTC dandelion
Date: 8 Jul 2009 01:15:04
Message: <web.4a542aae3f1e14c4ed14c4120@news.povray.org>
Sorry for the double-posting...


Post a reply to this message

From: clipka
Subject: Re: IRTC dandelion
Date: 8 Jul 2009 16:35:01
Message: <web.4a5502123f1e14c4de52d56d0@news.povray.org>
Christian Froeschlin <chr### [at] chrfrde> wrote:
> Actually, the dimples might also be arranged similar
> to a fibonacci spiral like seeds of a sunflower:
>
> http://en.wikipedia.org/wiki/Fibonacci_number
> http://taystar.com/morespirals2.html

"Might"? Judging from the latter page, they actually *are*. You did notice that
the article explicitly mentions dandelions, didn't you? :P


Post a reply to this message

From: Christian Froeschlin
Subject: Re: IRTC dandelion
Date: 8 Jul 2009 18:51:19
Message: <4a5522e7$1@news.povray.org>
clipka wrote:

>> http://taystar.com/morespirals2.html
> 
> "Might"? Judging from the latter page, they actually *are*. You did notice that
> the article explicitly mentions dandelions, didn't you? :P

I did notice, but I also heard rumours that the internet *might*
contain a few pages with partially incorrect content ;)


Post a reply to this message

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