POV-Ray : Newsgroups : povray.binaries.images : Parsing-Intensive Furball Server Time
14 Aug 2024 17:55:39 EDT (-0400)
  Parsing-Intensive Furball (Message 1 to 10 of 15)  
Goto Latest 10 Messages Next 5 Messages >>>
From: Tim Nikias
Subject: Parsing-Intensive Furball
Date: 12 Sep 2002 09:55:12
Message: <3d809cc0@news.povray.org>
What you see are 250 strands of hair.

The base-positions for these were generated using
the electrostatic-repulsion algorithm I implemented
some days ago.

Each hair uses 15 nodes, which are connected with
springs. Calculating the forces, gravity, hair-strength
etc required approximately 25*50=1250 iterations
to get to this state.

The calculation for this kind of furball is only worth it
if hair has to lie on the floor and needs to stay
out of other objects, otherwise the faster and simpler
algorithm I used in former images is sufficient...

Comments?

--
Tim Nikias
Homepage: http://www.digitaltwilight.de/no_lights/index.html
Email: Tim### [at] gmxde


Post a reply to this message


Attachments:
Download 'furball.jpg' (50 KB)

Preview of image 'furball.jpg'
furball.jpg


 

From: Christoph Hormann
Subject: Re: Parsing-Intensive Furball
Date: 12 Sep 2002 10:02:10
Message: <3D809E60.124EB139@gmx.de>
Tim Nikias wrote:
> 
> What you see are 250 strands of hair.
> 
> The base-positions for these were generated using
> the electrostatic-repulsion algorithm I implemented
> some days ago.
> 
> Each hair uses 15 nodes, which are connected with
> springs. Calculating the forces, gravity, hair-strength
> etc required approximately 25*50=1250 iterations
> to get to this state.
> 
> The calculation for this kind of furball is only worth it
> if hair has to lie on the floor and needs to stay
> out of other objects, otherwise the faster and simpler
> algorithm I used in former images is sufficient...
> 
> Comments?

Nice, does it have collision detection between the hairs?

Christoph

-- 
POV-Ray tutorials, IsoWood include,                 
TransSkin and more: http://www.tu-bs.de/~y0013390/  
Last updated 13 Aug. 2002 _____./\/^>_*_<^\/\.______


Post a reply to this message

From: Tim Nikias
Subject: Re: Parsing-Intensive Furball
Date: 12 Sep 2002 10:20:14
Message: <3d80a29e$1@news.povray.org>
Nope. I did implement the repulsion-algorithm once, but since I'm
no expert on this field, the hairs would explode...

I know, I should try putting springs between nodes which are too
close, but didn't have the patience to do so yet. That'll be the next
phase.

Before I do that, I want to see how I can combine the two methods
(the dirty easy one I used before and the realistic one now) in order
to speed parsing a little, and put the nodes somewhere near a position
they would finally be if it weren't for obstacles...

--
Tim Nikias
Homepage: http://www.digitaltwilight.de/no_lights/index.html
Email: Tim### [at] gmxde

>
> Nice, does it have collision detection between the hairs?
>


Post a reply to this message

From: Hugo
Subject: Re: Parsing-Intensive Furball
Date: 12 Sep 2002 10:25:36
Message: <3d80a3e0$1@news.povray.org>
I look forward to see your next implementations! This one is good!  But I
would think twice before touching it with my hand.  ;o)

Regards,
Hugo


Post a reply to this message

From: Christoph Hormann
Subject: Re: Parsing-Intensive Furball
Date: 12 Sep 2002 10:30:38
Message: <3D80A509.8CAD255A@gmx.de>
Tim Nikias wrote:
> 
> [...]
> 
> Before I do that, I want to see how I can combine the two methods
> (the dirty easy one I used before and the realistic one now) in order
> to speed parsing a little, and put the nodes somewhere near a position
> they would finally be if it weren't for obstacles...

If you don't want to create animations but just want the final result you
could try implementing a gradient descent method.  This means you don't
actually integrate the equations of movement but move the nodes according
to the gradient of the potential field of all (static) forces influencing
it.  This would avoid the possible instability and oscillation problems
but of course can lead to wrong results as well.

Christoph  

-- 
POV-Ray tutorials, IsoWood include,                 
TransSkin and more: http://www.tu-bs.de/~y0013390/  
Last updated 13 Aug. 2002 _____./\/^>_*_<^\/\.______


Post a reply to this message

From: gregjohn
Subject: Re: Parsing-Intensive Furball
Date: 12 Sep 2002 11:10:05
Message: <web.3d80ad6063c0327147b8a80e0@news.povray.org>
Tina!


Post a reply to this message

From: Tim Nikias
Subject: Re: Parsing-Intensive Furball
Date: 12 Sep 2002 12:15:04
Message: <3d80bd88@news.povray.org>
If this involves (and I'm pretty sure it does) functions, then
that's a no-no... I didn't have the time yet to fully understand
functions (I know, they're not THAT difficult), and once I
get comfortable with them and really grasp them, I guess
I could tackle a lot of stuff (concerning animations, objects,
repulsion etc)...
But until then, I'd like to stay focussed on what I'm already
capable of, and move further when I've got more time and
less stress...

Still, thanks for the suggestion, I'll keep it in mind.

--
Tim Nikias
Homepage: http://www.digitaltwilight.de/no_lights/index.html
Email: Tim### [at] gmxde


>
> If you don't want to create animations but just want the final result you
> could try implementing a gradient descent method.  This means you don't
> actually integrate the equations of movement but move the nodes according
> to the gradient of the potential field of all (static) forces influencing
> it.  This would avoid the possible instability and oscillation problems
> but of course can lead to wrong results as well.
>


Post a reply to this message

From: Tim Nikias
Subject: Re: Parsing-Intensive Furball
Date: 12 Sep 2002 12:15:22
Message: <3d80bd9a$1@news.povray.org>
I don't get this...

What or who is Tina?

--
Tim Nikias
Homepage: http://www.digitaltwilight.de/no_lights/index.html
Email: Tim### [at] gmxde

> Tina!


Post a reply to this message

From: Tim Nikias
Subject: Re: Parsing-Intensive Furball
Date: 12 Sep 2002 12:15:42
Message: <3d80bdae@news.povray.org>
Thanks! Yeah, this one looks rather "solid"...

--
Tim Nikias
Homepage: http://www.digitaltwilight.de/no_lights/index.html
Email: Tim### [at] gmxde
"Hugo" <hua### [at] post3teledk> schrieb im Newsbeitrag
news:3d80a3e0$1@news.povray.org...

> I look forward to see your next implementations! This one is good!  But I
> would think twice before touching it with my hand.  ;o)
>


Post a reply to this message

From: Christoph Hormann
Subject: Re: Parsing-Intensive Furball
Date: 12 Sep 2002 12:21:45
Message: <3D80BF19.5411935@gmx.de>
Tim Nikias wrote:
> 
> If this involves (and I'm pretty sure it does) functions, then
> that's a no-no... 

No, it does not (although it could simplify certain things to use
functions, for example you could use the gradient calculation macros from
'math.inc').

Christoph

-- 
POV-Ray tutorials, IsoWood include,                 
TransSkin and more: http://www.tu-bs.de/~y0013390/  
Last updated 13 Aug. 2002 _____./\/^>_*_<^\/\.______


Post a reply to this message

Goto Latest 10 Messages Next 5 Messages >>>

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